Ignore:
Timestamp:
Jun 11, 2008, 10:10:26 PM (16 years ago)
Author:
dai_9181
Message:

リンカの依存関係解決モジュールを製作中

File:
1 edited

Legend:

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

    r600 r637  
    7474
    7575        //定数を追加
    76         consts.Add( namespaceScopes, temporary, NextValue);
     76        consts.Add( Symbol( namespaceScopes, temporary ), NextValue);
    7777    }
    7878}
     
    178178                    if( StaticCalculation(false, expression, 0, &i64data, resultType) )
    179179                    {
    180                         consts.Add( namespaceScopes, name, i64data, resultType );
     180                        consts.Add( Symbol( namespaceScopes, name ), i64data, resultType );
    181181                    }
    182182                }
     
    185185                    // 定数マクロ
    186186                    const char *params = temporary + i2;
    187                     if( !constMacros.Add( namespaceScopes, name, params ) )
     187                    if( !constMacros.Add( Symbol( namespaceScopes, name ), params ) )
    188188                    {
    189189                        compiler.errorMessenger.Output( 1, NULL, i );
Note: See TracChangeset for help on using the changeset viewer.