Changeset 103 in dev for BasicCompiler_Common/Compile.cpp
- Timestamp:
- May 2, 2007, 4:08:58 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/Compile.cpp
r99 r103 222 222 223 223 case ESC_NAMESPACE: 224 Smoothie::Lexical::liveingNamespaceScopes.push_back( Command + 2 ); 225 break; 224 226 case ESC_ENDNAMESPACE: 227 if( Smoothie::Lexical::liveingNamespaceScopes.size() <= 0 ){ 228 SetError(12,"End Namespace",cp); 229 } 230 Smoothie::Lexical::liveingNamespaceScopes.pop_back(); 225 231 break; 226 232
Note:
See TracChangeset
for help on using the changeset viewer.