Ignore:
Timestamp:
Jul 24, 2008, 12:01:49 AM (16 years ago)
Author:
dai_9181
Message:

インクルードファイルの列挙時、ワイルドカード指定が外されていたので元に戻す。
その他、不要なコメントを排除(SVNは差分が残るので、古いソースコードのコメント化は不要です)。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/ab_common/src/Lexical/Source.cpp

    r700 r706  
    595595            // インクルードファイルを列挙(ワイルドカード指定を想定)
    596596            Jenga::Common::Strings resultOfFullPath;
    597 //          Jenga::Common::FileSystem::SearchFiles( resultOfFullPath, findStr );
    598             resultOfFullPath.push_back(findStr);
     597            Jenga::Common::FileSystem::SearchFiles( resultOfFullPath, findStr );
    599598
    600599            if( resultOfFullPath.empty() )
     
    629628
    630629                //#requireの場合では、既に読み込まれているファイルは読み込まないようにする
    631 /*
    632                 bool isFake = false;
    633                 if( isRequire ){
    634                     if( requireFiles.TryAdd( sourceFilePath ) ){
    635                         //既に読み込まれているとき
    636                         isFake = true;
    637                     }
    638                 }
    639 
    640                 BasicSource source;
    641 
    642                 if( isFake ){
    643                     //既に読み込まれているときは空データ
    644                     source.SetBuffer( "" );
    645                 }
    646                 else{
    647                     //取り込まれたファイルを収集する
    648                     requireFiles.Add( sourceFilePath );
    649 
    650                     //インクルードファイルを読み込む
    651                     if( !source.ReadFile_InIncludeDirective( sourceFilePath ) )
    652                     {
    653                         throw;
    654                     }
    655                 }
    656 */
    657630                BasicSource source;
    658631
     
    665638                    if( !source.ReadFile_InIncludeDirective( sourceFilePath ) )
    666639                    {
    667                         throw;
     640                        _ASSERTE( false );
    668641                    }
    669642                }
Note: See TracChangeset for help on using the changeset viewer.