Changeset 3152 for code/branches/pch/src/core
- Timestamp:
- Jun 12, 2009, 6:47:14 PM (16 years ago)
- Location:
- code/branches/pch/src/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/core/ConfigFileManager.cc
r2896 r3152 312 312 // There might be an array index 313 313 unsigned int index = 0; 314 if ( ConvertValue(&index, line.substr(pos2 + 1, pos3 - pos2 - 1)))314 if (convertValue(&index, line.substr(pos2 + 1, pos3 - pos2 - 1))) 315 315 { 316 316 // New array -
code/branches/pch/src/core/ConfigValueContainer.cc
r2662 r3152 303 303 304 304 if (token.size() > 0) 305 success = ConvertValue(&index, token[0]);305 success = convertValue(&index, token[0]); 306 306 307 307 if (!success || index < 0 || index > (signed int)MAX_VECTOR_INDEX)
Note: See TracChangeset
for help on using the changeset viewer.