Changeset 8f610e85
- Timestamp:
- Mar 2, 2016, 5:13:21 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:
- 4040425
- Parents:
- bdad1679
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/TypeData.cc
rbdad1679 r8f610e85 10 10 // Created On : Sat May 16 15:12:51 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Mar 2 1 6:34:22201613 // Update Count : 4 712 // Last Modified On : Wed Mar 2 17:08:38 2016 13 // Update Count : 48 14 14 // 15 15 … … 520 520 return buildTypeof(); 521 521 case Builtin: 522 return new VarArgsType( );522 return new VarArgsType( buildQualifiers() ); 523 523 case Attr: 524 524 return buildAttr(); -
src/SynTree/Type.h
rbdad1679 r8f610e85 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Feb 26 14:34:08 201613 // Update Count : 1912 // Last Modified On : Wed Mar 2 17:10:38 2016 13 // Update Count : 20 14 14 // 15 15 … … 404 404 public: 405 405 VarArgsType(); 406 VarArgsType( Type::Qualifiers &tq );406 VarArgsType( Type::Qualifiers tq ); 407 407 408 408 virtual VarArgsType *clone() const { return new VarArgsType( *this ); } -
src/SynTree/VarArgsType.cc
rbdad1679 r8f610e85 9 9 // Author : Aaron B. Moss 10 10 // Created On : Thu Feb 25 16:34:00 2016 11 // Last Modified By : Aaron B. Moss12 // Last Modified On : Thu Feb 25 16:34:00 201613 // Update Count : 111 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Mar 2 17:10:40 2016 13 // Update Count : 2 14 14 // 15 15 … … 18 18 VarArgsType::VarArgsType() : Type( Type::Qualifiers() ) {} 19 19 20 VarArgsType::VarArgsType( Type::Qualifiers &tq ) : Type( tq ) {}20 VarArgsType::VarArgsType( Type::Qualifiers tq ) : Type( tq ) {} 21 21 22 22 void VarArgsType::print( std::ostream &os, int indent ) const {
Note: See TracChangeset
for help on using the changeset viewer.