Changeset 6422 for code/trunk/src/libraries/core/Loader.cc
- Timestamp:
- Dec 26, 2009, 11:18:13 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/Loader.cc
r6417 r6422 244 244 { 245 245 it2++; 246 if (it->second && !(it2->second) && it2->first < pos)246 if (it->second && !(it2->second) && it2->first < pos) 247 247 it = ++it2; 248 248 else … … 307 307 unsigned int tempCounter = 1; 308 308 size_t tempPos = pos++; 309 while (temp[++tempPos] == '=')309 while (temp[++tempPos] == '=') 310 310 { 311 311 tempCounter++; 312 312 } 313 if (temp[tempPos] != '[')313 if (temp[tempPos] != '[') 314 314 { 315 315 tempCounter = 0; 316 316 } 317 else if (tempCounter == 0)317 else if (tempCounter == 0) 318 318 { 319 319 tempCounter = 1; … … 329 329 unsigned int tempCounter = 1; 330 330 size_t tempPos = pos++; 331 while (temp[++tempPos] == '=')331 while (temp[++tempPos] == '=') 332 332 { 333 333 tempCounter++; 334 334 } 335 if (temp[tempPos] != ']')335 if (temp[tempPos] != ']') 336 336 { 337 337 tempCounter = 0; 338 338 } 339 else if (tempCounter == 0)339 else if (tempCounter == 0) 340 340 { 341 341 tempCounter = 1; … … 346 346 } 347 347 std::string equalSigns; 348 for (unsigned int i = 0; i < equalSignCounter; i++)348 for (unsigned int i = 0; i < equalSignCounter; i++) 349 349 { 350 350 equalSigns += '=';
Note: See TracChangeset
for help on using the changeset viewer.