Changeset 38093ae for src/Validate
- Timestamp:
- Apr 18, 2024, 8:44:24 PM (9 months ago)
- Branches:
- master
- Children:
- 19313be5, cf191ac
- Parents:
- 748c751 (diff), 7a780ad (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- src/Validate
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Validate/GenericParameter.cpp
r748c751 r38093ae 289 289 return new ast::TypeExpr( expr->location, 290 290 new ast::ArrayType( 291 new ast::BasicType( ast::Basic Type::Char ),291 new ast::BasicType( ast::BasicKind::Char ), 292 292 expr, 293 293 ast::VariableLen, -
src/Validate/ImplementEnumFunc.cpp
r748c751 r38093ae 305 305 {new ast::ObjectDecl( 306 306 getLocation(), "_ret", 307 new ast::PointerType(new ast::BasicType{ast::Basic Type::Char}))});307 new ast::PointerType(new ast::BasicType{ast::BasicKind::Char}))}); 308 308 } 309 309 … … 358 358 attr == ast::EnumAttribute::Value 359 359 ? decl->base 360 : new ast::PointerType(new ast::BasicType{ast::Basic Type::Char}),360 : new ast::PointerType(new ast::BasicType{ast::BasicKind::Char}), 361 361 ast::ConstantExpr::from_int(decl->location, decl->members.size()), 362 362 ast::LengthFlag::FixedLen, ast::DimensionFlag::DynamicDim); -
src/Validate/ReplaceTypedef.cpp
r748c751 r38093ae 349 349 // Perhaps this should be a warning instead. 350 350 translationUnit.global.sizeType = 351 new ast::BasicType( ast::Basic Type::LongUnsignedInt );351 new ast::BasicType( ast::BasicKind::LongUnsignedInt ); 352 352 } 353 353 }
Note: See TracChangeset
for help on using the changeset viewer.