Changeset 29075d1 for src/Validate
- Timestamp:
- Nov 18, 2024, 10:07:39 PM (10 months ago)
- Branches:
- master
- Children:
- 7c80a86, ecf3812
- Parents:
- 1b39705 (diff), ed96731 (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:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Validate/Autogen.cpp
r1b39705 r29075d1 50 50 // -------------------------------------------------------------------------- 51 51 struct AutogenerateRoutines final : 52 public ast::WithDeclsToAdd <>,52 public ast::WithDeclsToAdd, 53 53 public ast::WithShortCircuiting { 54 54 void previsit( const ast::EnumDecl * enumDecl ); -
src/Validate/CompoundLiteral.cpp
r1b39705 r29075d1 27 27 28 28 struct CompoundLiteral final : 29 public ast::WithDeclsToAdd <>{29 public ast::WithDeclsToAdd { 30 30 ast::Storage::Classes storageClasses; 31 31 -
src/Validate/HoistStruct.cpp
r1b39705 r29075d1 68 68 */ 69 69 struct HoistStructCore final : 70 public ast::WithDeclsToAdd <>, public ast::WithGuards {70 public ast::WithDeclsToAdd, public ast::WithGuards { 71 71 ast::StructDecl const * previsit( ast::StructDecl const * decl ); 72 72 ast::StructDecl const * postvisit( ast::StructDecl const * decl ); -
src/Validate/HoistTypeDecls.cpp
r1b39705 r29075d1 22 22 namespace { 23 23 24 struct HoistTypeDecls final : public ast::WithDeclsToAdd <>{24 struct HoistTypeDecls final : public ast::WithDeclsToAdd { 25 25 void previsit( ast::SizeofExpr const * ); 26 26 void previsit( ast::AlignofExpr const * ); -
src/Validate/ImplementEnumFunc.cpp
r1b39705 r29075d1 472 472 473 473 struct ImplementEnumFunc final : 474 public ast::WithDeclsToAdd <>, public ast::WithShortCircuiting {474 public ast::WithDeclsToAdd, public ast::WithShortCircuiting { 475 475 void previsit(const ast::EnumDecl* enumDecl); 476 476 void previsit(const ast::FunctionDecl* functionDecl); -
src/Validate/LinkInstanceTypes.cpp
r1b39705 r29075d1 27 27 struct LinkTypesCore : public WithNoIdSymbolTable, 28 28 public ast::WithCodeLocation, 29 public ast::WithDeclsToAdd <>,29 public ast::WithDeclsToAdd, 30 30 public ast::WithGuards, 31 31 public ast::WithShortCircuiting, -
src/Validate/ReplaceTypedef.cpp
r1b39705 r29075d1 28 28 struct ReplaceTypedefCore final : 29 29 public ast::WithCodeLocation, 30 public ast::WithDeclsToAdd <>,30 public ast::WithDeclsToAdd, 31 31 public ast::WithGuards, 32 32 public ast::WithShortCircuiting,
Note:
See TracChangeset
for help on using the changeset viewer.