Changeset 3f80888 for src/SynTree/NamedTypeDecl.cc
- Timestamp:
- Mar 6, 2017, 2:07:04 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 2988eeb
- Parents:
- df47e2f (diff), d107010 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/SynTree/NamedTypeDecl.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/NamedTypeDecl.cc
rdf47e2f r3f80888 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Jun 13 08:13:55 201513 // Update Count : 312 // Last Modified On : Tue Feb 28 16:13:24 2017 13 // Update Count : 4 14 14 // 15 15 … … 40 40 } // if 41 41 if ( get_storageClass() != DeclarationNode::NoStorageClass ) { 42 os << DeclarationNode::storage Name[ get_storageClass() ] << ' ';42 os << DeclarationNode::storageClassNames[ get_storageClass() ] << ' '; 43 43 } // if 44 44 os << typeString(); … … 64 64 } // if 65 65 if ( get_storageClass() != DeclarationNode::NoStorageClass ) { 66 os << DeclarationNode::storage Name[ get_storageClass() ] << ' ';66 os << DeclarationNode::storageClassNames[ get_storageClass() ] << ' '; 67 67 } // if 68 68 os << typeString();
Note:
See TracChangeset
for help on using the changeset viewer.