Changeset 540ddb7d for src/SynTree
- Timestamp:
- Feb 29, 2016, 2:23:52 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- bdad1679, dbd8652
- Parents:
- 33e6a2cc
- Location:
- src/SynTree
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Type.h
r33e6a2cc r540ddb7d 403 403 class VarArgsType : public Type { 404 404 VarArgsType(); 405 VarArgsType( Type::Qualifiers &tq ); 405 406 406 407 virtual VarArgsType *clone() const { return new VarArgsType( *this ); } -
src/SynTree/VarArgsType.cc
r33e6a2cc r540ddb7d 18 18 VarArgsType::VarArgsType() : Type( Type::Qualifiers() ) {} 19 19 20 VarArgsType::VarArgsType( Type::Qualifiers &tq ) : Type( tq ) {} 21 20 22 void VarArgsType::print( std::ostream &os, int indent ) const { 21 23 Type::print( os, indent );
Note: See TracChangeset
for help on using the changeset viewer.