Changeset 195 in dev for trunk/abdev/BasicCompiler32/MakePeHdr.cpp
- Timestamp:
- Jun 26, 2007, 1:48:18 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/MakePeHdr.cpp
r193 r195 6 6 #include <ClassImpl.h> 7 7 #include <Compiler.h> 8 #include <NamespaceSupporter.h> 8 9 9 10 #include "../BasicCompiler_Common/common.h" … … 169 170 170 171 // 名前空間情報を取得 171 NamespaceS copesCollection::CollectNamespaces(172 NamespaceSupporter::CollectNamespaces( 172 173 Smoothie::Lexical::source.GetBuffer(), 173 174 compiler.GetMeta().GetNamespaces() … … 370 371 if(!bDll){ 371 372 // 名前空間が初期化されているかをチェック 372 if( Smoothie::Temp::liveingNamespaceScopes.size() ){373 if( namespaceSupporter.GetLivingNamespaceScopes().size() ){ 373 374 SetError(); 374 375 } … … 470 471 471 472 // 名前空間が正しく閉じられているかをチェック 472 if( Smoothie::Temp::liveingNamespaceScopes.size() ){473 if( namespaceSupporter.GetLivingNamespaceScopes().size() ){ 473 474 SetError(63,NULL,-1); 474 475 }
Note:
See TracChangeset
for help on using the changeset viewer.