Changeset 195 in dev for trunk/abdev/BasicCompiler_Common/src/VariableImpl.cpp
- Timestamp:
- Jun 26, 2007, 1:48:18 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/VariableImpl.cpp
r193 r195 1 1 #include <Compiler.h> 2 2 #include <VariableImpl.h> 3 #include <NamespaceSupporter.h> 3 4 4 5 bool VariableImpl::IsEqualSymbol( const Symbol &symbol, bool isSupportStaticMember ) const 5 6 { 6 7 if( GetName() == symbol.GetName() 7 && compiler.IsSameAreaNamespace( this->GetNamespaceScopes(), symbol.GetNamespaceScopes() ) )8 && namespaceSupporter.IsSameAreaNamespace( this->GetNamespaceScopes(), symbol.GetNamespaceScopes() ) ) 8 9 { 9 10 return true;
Note:
See TracChangeset
for help on using the changeset viewer.