Ignore:
Timestamp:
May 4, 2008, 12:17:40 AM (16 years ago)
Author:
dai_9181
Message:

StartCompileメソッドを廃止し、Usingメソッドのオーバーロードに差し替えた。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/Compiler.cpp

    r537 r540  
    239239    this->SetCompilingUserProc( pUserProc );
    240240
    241     //コンパイルスタートをクラス管理クラスに追加
    242     this->GetObjectModule().meta.GetClasses().StartCompile( pUserProc );
     241    if( pUserProc->HasParentClass() )
     242    {
     243        // クラスの使用チェック
     244        pUserProc->GetParentClass().Using();
     245    }
    243246
    244247    // コンパイル中の関数が属する名前空間
Note: See TracChangeset for help on using the changeset viewer.