| 1384 | //----------------------------------------------------------------------------- |
| 1385 | |
| 1386 | StringTableEntry getPathExpandoValue( U32 expandoIndex ) |
| 1387 | { |
| 1388 | // Finish if index is out of range. |
| 1389 | if ( expandoIndex >= PathExpandos.size() ) |
| 1390 | return NULL; |
| 1391 | |
| 1392 | // Find indexed iterator. |
| 1393 | typePathExpandoMap::iterator expandoItr = PathExpandos.begin(); |
| 1394 | while( expandoIndex > 0 ) { ++expandoItr; --expandoIndex; } |
| 1395 | |
| 1396 | return expandoItr->value; |
| 1397 | } |
| 1398 | |
| 1399 | //----------------------------------------------------------------------------- |
| 1400 |
no test coverage detected