Changeset 199 in dev for trunk/abdev/BasicCompiler32
- Timestamp:
- Jun 27, 2007, 3:16:11 AM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_ProcOp.cpp
r198 r199 282 282 283 283 // コンパイル中の関数が属する名前空間 284 namespaceSupporter.SetLivingNamespaceScopes( pUserProc->GetNamespaceScopes() );284 compiler.GetNamespaceSupporter().SetLivingNamespaceScopes( pUserProc->GetNamespaceScopes() ); 285 285 286 286 // コンパイル中の関数でImportsされている名前空間 287 namespaceSupporter.SetImportedNamespaces( pUserProc->GetImportedNamespaces() );287 compiler.GetNamespaceSupporter().SetImportedNamespaces( pUserProc->GetImportedNamespaces() ); 288 288 289 289 if(pUserProc->IsSystem()){ -
trunk/abdev/BasicCompiler32/MakePeHdr.cpp
r195 r199 371 371 if(!bDll){ 372 372 // 名前空間が初期化されているかをチェック 373 if( namespaceSupporter.GetLivingNamespaceScopes().size() ){373 if( compiler.GetNamespaceSupporter().GetLivingNamespaceScopes().size() ){ 374 374 SetError(); 375 375 } … … 471 471 472 472 // 名前空間が正しく閉じられているかをチェック 473 if( namespaceSupporter.GetLivingNamespaceScopes().size() ){473 if( compiler.GetNamespaceSupporter().GetLivingNamespaceScopes().size() ){ 474 474 SetError(63,NULL,-1); 475 475 }
Note:
See TracChangeset
for help on using the changeset viewer.