Changeset df6cc9d for src/AST/Type.cpp
- Timestamp:
- Oct 19, 2022, 4:43:26 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 1a45263
- Parents:
- 9cd5bd2 (diff), 135143ba (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Type.cpp
r9cd5bd2 rdf6cc9d 22 22 #include "Decl.hpp" 23 23 #include "Init.hpp" 24 #include "Inspect.hpp" 24 25 #include "Common/utility.h" // for copy, move 25 #include "InitTweak/InitTweak.h" // for getPointerBase26 26 #include "Tuples/Tuples.h" // for isTtype 27 27 … … 36 36 const Type * t; 37 37 const Type * a; 38 for ( t = this; (a = InitTweak::getPointerBase( t )); t = a );38 for ( t = this; (a = ast::getPointerBase( t )); t = a ); 39 39 return t; 40 40 } … … 176 176 for ( const Type * ty : types ) { 177 177 members.emplace_back( new ObjectDecl{ 178 CodeLocation {}, "", ty, new ListInit( CodeLocation{}, {}, {}, NoConstruct ),178 CodeLocation(), "", ty, new ListInit( CodeLocation(), {}, {}, NoConstruct ), 179 179 Storage::Classes{}, Linkage::Cforall } ); 180 180 }
Note:
See TracChangeset
for help on using the changeset viewer.