Changeset 550afde2
- Timestamp:
- Jul 5, 2024, 3:49:53 PM (3 months ago)
- Branches:
- master
- Children:
- 5a2b0b7, bb336a6
- Parents:
- c2cf2d0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/parseargs.cfa
rc2cf2d0 r550afde2 78 78 } 79 79 else { 80 char * temp = "";81 parse_args(0, &temp, options, usage, left );80 char * temp[1] = { 0p }; 81 parse_args(0, temp, options, usage, left ); 82 82 } 83 83 } -
src/Parser/ExpressionNode.cpp
rc2cf2d0 r550afde2 483 483 Default: // char default string type 484 484 default: 485 strtype = new ast::BasicType( ast::BasicKind::Char );485 strtype = new ast::BasicType( ast::BasicKind::Char, ast::CV::Const ); 486 486 } // switch 487 487 ast::ArrayType * at = new ast::ArrayType(
Note: See TracChangeset
for help on using the changeset viewer.