Changeset 7a780ad for src/ControlStruct
- Timestamp:
- Apr 18, 2024, 5:19:17 PM (18 months ago)
- Branches:
- master
- Children:
- 38093ae
- Parents:
- 60c5b6d
- Location:
- src/ControlStruct
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/ExceptDecl.cpp
r60c5b6d r7a780ad 99 99 createExceptionInstType( exceptionName, params ) ) ); 100 100 type->returns.push_back( new ast::PointerType( 101 new ast::BasicType( ast::Basic Type::Char, ast::CV::Const ) ) );101 new ast::BasicType( ast::BasicKind::Char, ast::CV::Const ) ) ); 102 102 return type; 103 103 } … … 344 344 "", 345 345 new ast::PointerType( 346 new ast::BasicType( ast::Basic Type::Char, ast::CV::Const ) )346 new ast::BasicType( ast::BasicKind::Char, ast::CV::Const ) ) 347 347 ), 348 348 }, -
src/ControlStruct/ExceptTranslate.cpp
r60c5b6d r7a780ad 182 182 location, 183 183 "__handler_index", 184 new ast::BasicType( ast::Basic Type::SignedInt )184 new ast::BasicType( ast::BasicKind::SignedInt ) 185 185 ); 186 186 } … … 201 201 location, 202 202 "__ret_bool", 203 new ast::BasicType( ast::Basic Type::Bool ),203 new ast::BasicType( ast::BasicKind::Bool ), 204 204 nullptr, //init 205 205 ast::Storage::Classes{}, … … 231 231 location, 232 232 "__handler_index", 233 new ast::BasicType( ast::BasicType::SignedInt),233 new ast::BasicType( ast::BasicKind::SignedInt ), 234 234 nullptr, 235 235 ast::Storage::Classes{},
Note:
See TracChangeset
for help on using the changeset viewer.