Changes in src/GenPoly/Box.cpp [7a780ad:d06273c]
- File:
-
- 1 edited
-
src/GenPoly/Box.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Box.cpp
r7a780ad rd06273c 43 43 /// The layout type is used to represent sizes, alignments and offsets. 44 44 ast::BasicType * makeLayoutType() { 45 return new ast::BasicType( ast::Basic Kind::LongUnsignedInt );45 return new ast::BasicType( ast::BasicType::LongUnsignedInt ); 46 46 } 47 47 48 48 /// Fixed version of layout type (just adding a 'C' in C++ style). 49 49 ast::BasicType * makeLayoutCType() { 50 return new ast::BasicType( ast::Basic Kind::LongUnsignedInt,50 return new ast::BasicType( ast::BasicType::LongUnsignedInt, 51 51 ast::CV::Qualifiers( ast::CV::Const ) ); 52 52 } … … 1617 1617 ast::Type * polyToMonoType( CodeLocation const & location, 1618 1618 ast::Type const * declType ) { 1619 auto charType = new ast::BasicType( ast::Basic Kind::Char );1619 auto charType = new ast::BasicType( ast::BasicType::Char ); 1620 1620 auto size = new ast::NameExpr( location, 1621 1621 sizeofName( Mangle::mangleType( declType ) ) );
Note:
See TracChangeset
for help on using the changeset viewer.