Changeset 199 in dev for trunk/abdev/BasicCompiler32


Ignore:
Timestamp:
Jun 27, 2007, 3:16:11 AM (17 years ago)
Author:
dai_9181
Message:
 
Location:
trunk/abdev/BasicCompiler32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler32/Compile_ProcOp.cpp

    r198 r199  
    282282
    283283    // コンパイル中の関数が属する名前空間
    284     namespaceSupporter.SetLivingNamespaceScopes( pUserProc->GetNamespaceScopes() );
     284    compiler.GetNamespaceSupporter().SetLivingNamespaceScopes( pUserProc->GetNamespaceScopes() );
    285285
    286286    // コンパイル中の関数でImportsされている名前空間
    287     namespaceSupporter.SetImportedNamespaces( pUserProc->GetImportedNamespaces() );
     287    compiler.GetNamespaceSupporter().SetImportedNamespaces( pUserProc->GetImportedNamespaces() );
    288288
    289289    if(pUserProc->IsSystem()){
  • trunk/abdev/BasicCompiler32/MakePeHdr.cpp

    r195 r199  
    371371    if(!bDll){
    372372        // 名前空間が初期化されているかをチェック
    373         if( namespaceSupporter.GetLivingNamespaceScopes().size() ){
     373        if( compiler.GetNamespaceSupporter().GetLivingNamespaceScopes().size() ){
    374374            SetError();
    375375        }
     
    471471
    472472        // 名前空間が正しく閉じられているかをチェック
    473         if( namespaceSupporter.GetLivingNamespaceScopes().size() ){
     473        if( compiler.GetNamespaceSupporter().GetLivingNamespaceScopes().size() ){
    474474            SetError(63,NULL,-1);
    475475        }
Note: See TracChangeset for help on using the changeset viewer.