Ignore:
Timestamp:
Mar 19, 2011, 9:13:12 PM (13 years ago)
Author:
イグトランス (egtra)
Message:

ab_commonにおいて、各クラスのコピー禁止を明確化、ならびにコピー可能なものにムーブコンストラクタ・ムーブ代入演算子を追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/egtra/ab5.0/abdev/BasicCompiler_Common/hash.cpp

    r806 r816  
    2222    ///////////////////////////
    2323
     24    auto const s = LexicalAnalyzer::FullNameToSymbol( fullName );
     25
    2426    // ハッシュ値を取得
    2527    foreach (auto pDllProc, compiler.GetObjectModule().meta.GetDllProcs().GetHashArrayElement(simpleName))
    2628    {
    27         if( pDllProc->IsEqualSymbol( LexicalAnalyzer::FullNameToSymbol( fullName ) ) ){
     29        if( pDllProc->IsEqualSymbol( s ) )
     30        {
    2831            return pDllProc;
    2932        }
Note: See TracChangeset for help on using the changeset viewer.