Changeset 504 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/Symbol.cpp
- Timestamp:
- Apr 28, 2008, 7:04:16 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/Symbol.cpp
r461 r504 3 3 #include <Compiler.h> 4 4 #include <Symbol.h> 5 6 const NamespaceSupporter *Symbol::namespaceSupporter = NULL; 5 7 6 8 Symbol::Symbol( const char *fullName ) … … 41 43 } 42 44 43 return compiler.GetNamespaceSupporter().IsSameAreaNamespace( GetNamespaceScopes(), namespaceScopes ); 45 _ASSERTE( namespaceSupporter ); 46 return namespaceSupporter->IsSameAreaNamespace( GetNamespaceScopes(), namespaceScopes ); 44 47 } 45 48 bool Symbol::IsEqualSymbol( const Symbol &symbol ) const
Note:
See TracChangeset
for help on using the changeset viewer.