Changeset 325 in dev for trunk/abdev/BasicCompiler_Common/src/Source.cpp
- Timestamp:
- Sep 25, 2007, 8:56:38 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/Source.cpp
r322 r325 1048 1048 while( true ) 1049 1049 { 1050 std::string::size_type index = result.find( "#" + it->first + "#");1050 std::string::size_type index = result.find( it->first ); 1051 1051 if( index == std::string::npos ) 1052 1052 { … … 1054 1054 } 1055 1055 1056 result = result.substr( 0, index ) + it->second + result.substr( index + it->first.length() + 2);1056 result = result.substr( 0, index ) + it->second + result.substr( index + it->first.length() ); 1057 1057 } 1058 1058 it++;
Note:
See TracChangeset
for help on using the changeset viewer.