-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule libexpr
updated
29 files
+4 −5 | .clang-format | |
+7 −8 | src/calc/arithmetic.cc | |
+25 −25 | src/calc/arithmetic.h | |
+47 −48 | src/calc/casting.cc | |
+36 −24 | src/calc/casting.h | |
+10 −11 | src/calc/mathematic.cc | |
+15 −14 | src/calc/mathematic.h | |
+20 −21 | src/calc/relational.cc | |
+32 −27 | src/calc/relational.h | |
+8 −9 | src/calc/special.cc | |
+15 −14 | src/calc/special.h | |
+102 −116 | src/calc/string_fun.cc | |
+2 −3 | src/calc/string_fun.h | |
+43 −51 | src/codec.cc | |
+14 −15 | src/codec.h | |
+4 −4 | src/operand.h | |
+78 −89 | src/operand_stack.h | |
+39 −43 | src/operator.cc | |
+119 −140 | src/operator.h | |
+298 −303 | src/operator_vector.cc | |
+59 −66 | src/operator_vector.h | |
+4 −5 | src/operators.cc | |
+2 −3 | src/operators.h | |
+30 −37 | src/runner.h | |
+21 −23 | src/types.cc | |
+35 −36 | src/types.h | |
+42 −44 | test/assertions.cc | |
+20 −20 | test/assertions.h | |
+50 −53 | test/test_expr.cc |