- Timestamp:
- Jun 5, 2019, 1:47:55 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:
- 4864a73, 7c608d5, 99d4584
- Parents:
- d4b6638
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Decl.hpp
rd4b6638 r2a8f0c1 103 103 104 104 ObjectDecl( const CodeLocation & loc, const std::string & name, const Type * type, 105 Init * init = nullptr, Storage::Classes storage = {}, Linkage::Spec linkage = Linkage::C,106 Expr * bitWd = nullptr, std::vector< ptr<Attribute> > && attrs = {},107 Function::Specs fs = {} )105 const Init * init = nullptr, Storage::Classes storage = {}, 106 Linkage::Spec linkage = Linkage::C, const Expr * bitWd = nullptr, 107 std::vector< ptr<Attribute> > && attrs = {}, Function::Specs fs = {} ) 108 108 : DeclWithType( loc, name, storage, linkage, std::move(attrs), fs ), type( type ), 109 109 init( init ), bitfieldWidth( bitWd ) {}
Note: See TracChangeset
for help on using the changeset viewer.