Changeset 181 in dev for trunk/jenga/src/smoothie/Namespace.cpp
- Timestamp:
- Jun 24, 2007, 2:05:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/jenga/src/smoothie/Namespace.cpp
r173 r181 37 37 bool NamespaceScopes::IsLiving() const 38 38 { 39 if( IsBelong( *this, Smoothie:: Lexical::liveingNamespaceScopes ) ){39 if( IsBelong( *this, Smoothie::Temp::liveingNamespaceScopes ) ){ 40 40 return true; 41 41 } … … 57 57 string thisStr = ToString(); 58 58 59 NamespaceScopes tempLivingNamespaceScopes = Smoothie:: Lexical::liveingNamespaceScopes;59 NamespaceScopes tempLivingNamespaceScopes = Smoothie::Temp::liveingNamespaceScopes; 60 60 61 61 while( tempLivingNamespaceScopes.size() ){ … … 106 106 bool NamespaceScopesCollection::Imports( const string &namespaceStr ){ 107 107 NamespaceScopes namespaceScopes( namespaceStr ); 108 if( !Smoothie:: meta.namespaceScopesCollection.IsExist( namespaceScopes ) ){108 if( !Smoothie::GetMeta().namespaceScopesCollection.IsExist( namespaceScopes ) ){ 109 109 return false; 110 110 }
Note:
See TracChangeset
for help on using the changeset viewer.