Changeset 750 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/DebugMiddleFile.cpp
- Timestamp:
- Sep 24, 2008, 2:02:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/DebugMiddleFile.cpp
r743 r750 104 104 // オブジェクトモジュールリストに類似したソースコードリストを作成 105 105 BasicSources sources; 106 BOOST_FOREACH( const ObjectModule *pObjectModule, compiler.staticLibraries )106 foreach( const ObjectModule *pObjectModule, compiler.staticLibraries ) 107 107 { 108 108 sources.push_back( pObjectModule->GetSource() ); … … 138 138 *(long *)(buffer+i2)=(long)sourceLines.size(); 139 139 i2+=sizeof(long); 140 BOOST_FOREACH( const SourceLine &sourceLine, sourceLines )140 foreach( const SourceLine &sourceLine, sourceLines ) 141 141 { 142 142 *(long *)(buffer+i2) = sourceLine.GetNativeCodePos(); … … 173 173 memcpy(buffer,OpBuffer,SizeOf_CodeSection); 174 174 175 BOOST_FOREACH( const SourceLine &sourceLine, _oldSourceLines )175 foreach( const SourceLine &sourceLine, _oldSourceLines ) 176 176 { 177 177 if(!( … … 433 433 DebugSectionCollection::~DebugSectionCollection() 434 434 { 435 BOOST_FOREACH( DebugSection *pDebugSection, debugSections )435 foreach( DebugSection *pDebugSection, debugSections ) 436 436 { 437 437 delete pDebugSection;
Note:
See TracChangeset
for help on using the changeset viewer.