Changeset 706 in dev
- Timestamp:
- Jul 24, 2008, 12:01:49 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/ab_common/src/Lexical/Source.cpp
r700 r706 595 595 // インクルードファイルを列挙(ワイルドカード指定を想定) 596 596 Jenga::Common::Strings resultOfFullPath; 597 // Jenga::Common::FileSystem::SearchFiles( resultOfFullPath, findStr ); 598 resultOfFullPath.push_back(findStr); 597 Jenga::Common::FileSystem::SearchFiles( resultOfFullPath, findStr ); 599 598 600 599 if( resultOfFullPath.empty() ) … … 629 628 630 629 //#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 */657 630 BasicSource source; 658 631 … … 665 638 if( !source.ReadFile_InIncludeDirective( sourceFilePath ) ) 666 639 { 667 throw;640 _ASSERTE( false ); 668 641 } 669 642 }
Note:
See TracChangeset
for help on using the changeset viewer.