Changeset 540ddb7d for src/SynTree


Ignore:
Timestamp:
Feb 29, 2016, 2:23:52 PM (9 years ago)
Author:
Aaron Moss <a3moss@…>
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
Message:

Add qualifiers to VarArgsType?

Location:
src/SynTree
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Type.h

    r33e6a2cc r540ddb7d  
    403403class VarArgsType : public Type {
    404404        VarArgsType();
     405        VarArgsType( Type::Qualifiers &tq );
    405406
    406407        virtual VarArgsType *clone() const { return new VarArgsType( *this ); }
  • src/SynTree/VarArgsType.cc

    r33e6a2cc r540ddb7d  
    1818VarArgsType::VarArgsType() : Type( Type::Qualifiers() ) {}
    1919
     20VarArgsType::VarArgsType( Type::Qualifiers &tq ) : Type( tq ) {}
     21
    2022void VarArgsType::print( std::ostream &os, int indent ) const {
    2123        Type::print( os, indent );
Note: See TracChangeset for help on using the changeset viewer.