Changeset 7a780ad for src/Validate
- Timestamp:
- Apr 18, 2024, 5:19:17 PM (7 months ago)
- Branches:
- master
- Children:
- 38093ae
- Parents:
- 60c5b6d
- Location:
- src/Validate
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Validate/GenericParameter.cpp
r60c5b6d r7a780ad 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
r60c5b6d r7a780ad 311 311 {new ast::ObjectDecl( 312 312 getLocation(), "_ret", 313 new ast::PointerType(new ast::BasicType{ast::Basic Type::Char}))});313 new ast::PointerType(new ast::BasicType{ast::BasicKind::Char}))}); 314 314 } 315 315 … … 364 364 attr == ast::EnumAttribute::Value 365 365 ? decl->base 366 : new ast::PointerType(new ast::BasicType{ast::Basic Type::Char}),366 : new ast::PointerType(new ast::BasicType{ast::BasicKind::Char}), 367 367 ast::ConstantExpr::from_int(decl->location, decl->members.size()), 368 368 ast::LengthFlag::FixedLen, ast::DimensionFlag::DynamicDim); -
src/Validate/ReplaceTypedef.cpp
r60c5b6d r7a780ad 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.