Changes in src/Parser/ExpressionNode.cc [f7c41d4:8fa77eb]
- File:
-
- 1 edited
-
src/Parser/ExpressionNode.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ExpressionNode.cc
rf7c41d4 r8fa77eb 10 10 // Created On : Sat May 16 13:17:07 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Feb 11 14:49:00202313 // Update Count : 107 912 // Last Modified On : Mon Jan 16 15:52:05 2023 13 // Update Count : 1078 14 14 // 15 15 … … 592 592 Expression * build_unary_ptr( OperKinds op, ExpressionNode * expr_node ) { 593 593 list< Expression * > args; 594 args.push_back( maybeMoveBuild< Expression >(expr_node) ); // xxx -- this is exactly the same as the val case now, refactor this code.594 args.push_back( maybeMoveBuild< Expression >(expr_node) ); // xxx -- this is exactly the same as the val case now, refactor this code. 595 595 return new UntypedExpr( new NameExpr( OperName[ (int)op ] ), args ); 596 596 } // build_unary_ptr
Note:
See TracChangeset
for help on using the changeset viewer.