| 2047 | //----------------------------------------------------------------------------- |
| 2048 | |
| 2049 | StringTableEntry getPathExpandoValue(U32 expandoIndex) |
| 2050 | { |
| 2051 | // Finish if index is out of range. |
| 2052 | if (expandoIndex >= PathExpandos.size()) |
| 2053 | return NULL; |
| 2054 | |
| 2055 | // Find indexed iterator. |
| 2056 | typePathExpandoMap::iterator expandoItr = PathExpandos.begin(); |
| 2057 | while (expandoIndex > 0) { ++expandoItr; --expandoIndex; } |
| 2058 | |
| 2059 | return expandoItr->value; |
| 2060 | } |
| 2061 | |
| 2062 | //----------------------------------------------------------------------------- |
| 2063 |
no test coverage detected