Ignore:
Timestamp:
Apr 28, 2008, 7:04:16 PM (16 years ago)
Author:
dai_9181
Message:

Symbol::RegistNamespaceSupporterメソッドを追加。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/Symbol.cpp

    r461 r504  
    33#include <Compiler.h>
    44#include <Symbol.h>
     5
     6const NamespaceSupporter *Symbol::namespaceSupporter = NULL;
    57
    68Symbol::Symbol( const char *fullName )
     
    4143    }
    4244
    43     return compiler.GetNamespaceSupporter().IsSameAreaNamespace( GetNamespaceScopes(), namespaceScopes );
     45    _ASSERTE( namespaceSupporter );
     46    return namespaceSupporter->IsSameAreaNamespace( GetNamespaceScopes(), namespaceScopes );
    4447}
    4548bool Symbol::IsEqualSymbol( const Symbol &symbol ) const
Note: See TracChangeset for help on using the changeset viewer.