- Timestamp:
- Jun 24, 2019, 2:28:10 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 093a5d7
- Parents:
- 08c0780
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Type.hpp
r08c0780 r0f6a7752 164 164 static const char *typeNames[]; 165 165 166 BasicType( Kind k, CV::Qualifiers q = {} ) : Type(q), kind(k) {} 166 BasicType( Kind k, CV::Qualifiers q = {}, std::vector<ptr<Attribute>> && as = {} ) 167 : Type(q, std::move(as)), kind(k) {} 167 168 168 169 /// Check if this type represents an integer type
Note:
See TracChangeset
for help on using the changeset viewer.