Changeset 10a1225 for src/AST/Decl.hpp


Ignore:
Timestamp:
May 17, 2019, 12:09:51 PM (5 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
896737b
Parents:
77bfc80
Message:

Many errors and warning fixes.
More visit implementation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Decl.hpp

    r77bfc80 r10a1225  
    101101        ptr<Expr> bitfieldWidth;
    102102
    103         ObjectDecl( const CodeLocation& loc, const std::string& name, Type* type, Init* init = nullptr,
    104                 Storage::Classes storage = {}, Linkage::Spec linkage = Linkage::C, Expr* bitWd = nullptr,
    105                 std::vector<ptr<Attribute>>&& attrs = {}, Function::Specs fs = {})
     103        ObjectDecl( const CodeLocation & loc, const std::string & name, const Type * type, Init * init = nullptr,
     104                Storage::Classes storage = {}, Linkage::Spec linkage = Linkage::C, Expr * bitWd = nullptr,
     105                std::vector< ptr<Attribute> > && attrs = {}, Function::Specs fs = {})
    106106        : DeclWithType( loc, name, storage, linkage, std::move(attrs), fs ), type( type ),
    107107          init( init ), bitfieldWidth( bitWd ) {}
Note: See TracChangeset for help on using the changeset viewer.