Changeset 139 in dev
- Timestamp:
- Jun 12, 2007, 6:13:49 PM (17 years ago)
- Location:
- BasicCompiler_Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/BasicCompiler.cpp
r97 r139 163 163 int i,i2,i3,i4; 164 164 char temporary[MAX_PATH]; 165 166 // '/'→'\' 167 for( i=0;path[i];i++ ){ 168 if( path[i] == '/' ){ 169 path[i]='\\'; 170 } 171 } 165 172 166 173 if(strstr(path,":")||strstr(path,"\\\\")) return; -
BasicCompiler_Common/Class.cpp
r137 r139 998 998 999 999 // 名前空間管理 1000 NamespaceScopes backupNamespaceScopes = Smoothie::Lexical::liveingNamespaceScopes; 1000 1001 NamespaceScopes &namespaceScopes = Smoothie::Lexical::liveingNamespaceScopes; 1001 1002 namespaceScopes.clear(); … … 1440 1441 } 1441 1442 } 1443 1444 1445 // 名前空間を元に戻す 1446 Smoothie::Lexical::liveingNamespaceScopes = backupNamespaceScopes; 1442 1447 } 1443 1448
Note:
See TracChangeset
for help on using the changeset viewer.