Changeset e3bc51c
- Timestamp:
- May 8, 2020, 4:43:49 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- bcd74f3
- Parents:
- 7030dab
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Decl.hpp
r7030dab re3bc51c 191 191 TypeDecl( 192 192 const CodeLocation & loc, const std::string & name, Storage::Classes storage, 193 const Type * b, Type Var::Kind k, bool s, const Type * i = nullptr )194 : NamedTypeDecl( loc, name, storage, b ), kind( k ), sized( k == Type Var::Ttype || s ),193 const Type * b, TypeDecl::Kind k, bool s, const Type * i = nullptr ) 194 : NamedTypeDecl( loc, name, storage, b ), kind( k ), sized( k == TypeDecl::Ttype || s ), 195 195 init( i ) {} 196 196
Note: See TracChangeset
for help on using the changeset viewer.