- Timestamp:
- Feb 11, 2022, 11:00:35 AM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
- Children:
- 51b8582
- Parents:
- 5910fc0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/AST/Decl.cpp ¶
r5910fc0 r9490621 39 39 if ( uniqueId ) return; // ensure only set once 40 40 uniqueId = ++lastUniqueId; 41 idMap[ uniqueId ] = this;41 //idMap[ uniqueId ] = this; 42 42 } 43 43 44 44 readonly<Decl> Decl::fromId( UniqueId id ) { 45 assert( false ); 45 46 IdMapType::const_iterator i = idMap.find( id ); 46 47 if ( i != idMap.end() ) return i->second;
Note: See TracChangeset
for help on using the changeset viewer.