Changes in src/SynTree/Declaration.cc [68cd1ce:843054c2]
- File:
-
- 1 edited
-
src/SynTree/Declaration.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Declaration.cc
r68cd1ce r843054c2 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:07:20201513 // Update Count : 912 // Last Modified On : Mon May 18 08:18:35 2015 13 // Update Count : 2 14 14 // 15 15 … … 22 22 #include "utility.h" 23 23 24 const char* Declaration::storageClassName[] = { "", "auto", "static", "extern", "register" }; 25 24 26 static UniqueId lastUniqueId = 0; 25 27 typedef std::map< UniqueId, Declaration* > IdMapType; 26 28 static IdMapType idMap; 27 29 28 Declaration::Declaration( const std::string &name, DeclarationNode::StorageClass sc, LinkageSpec::Type linkage )29 : name( name ), storageClass( sc ), linkage( linkage ), uniqueId( 0 ) {30 Declaration::Declaration( const std::string &name, StorageClass sc, LinkageSpec::Type linkage ) 31 : name( name ), storageClass( sc ), linkage( linkage ), uniqueId( 0 ) { 30 32 } 31 33 32 34 Declaration::Declaration( const Declaration &other ) 33 : name( other.name ), storageClass( other.storageClass ), linkage( other.linkage ), uniqueId( other.uniqueId ) {35 : name( other.name ), storageClass( other.storageClass ), linkage( other.linkage ), uniqueId( other.uniqueId ) { 34 36 } 35 37 … … 42 44 } 43 45 46 /* static class method */ 44 47 Declaration *Declaration::declFromId( UniqueId id ) { 45 48 IdMapType::const_iterator i = idMap.find( id ); 46 return i != idMap.end() ? i->second : 0; 49 if ( i != idMap.end() ) { 50 return i->second; 51 } else { 52 return 0; 53 } // if 47 54 } 48 55 56 /* static class method */ 49 57 void Declaration::dumpIds( std::ostream &os ) { 50 58 for ( IdMapType::const_iterator i = idMap.begin(); i != idMap.end(); ++i ) {
Note:
See TracChangeset
for help on using the changeset viewer.