Changeset 271 in dev for trunk/abdev/BasicCompiler_Common/Intermediate_Step1.cpp
- Timestamp:
- Aug 10, 2007, 3:16:42 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/Intermediate_Step1.cpp
r270 r271 254 254 compiler.staticLibraryFilePaths.push_back( temporary ); 255 255 256 ObjectModule *pStaticLibrary = new ObjectModule(); 257 pStaticLibrary->ReadText( temporary ); 258 compiler.staticLibraries.push_back( pStaticLibrary ); 256 compiler.staticLibraries.push_back( new ObjectModule() ); 257 compiler.staticLibraries.back()->ReadText( temporary ); 259 258 260 259 for(;;i2++){
Note:
See TracChangeset
for help on using the changeset viewer.