| 2032 | //----------------------------------------------------------------------------- |
| 2033 | |
| 2034 | StringTableEntry getPathExpandoKey(U32 expandoIndex) |
| 2035 | { |
| 2036 | // Finish if index is out of range. |
| 2037 | if (expandoIndex >= PathExpandos.size()) |
| 2038 | return NULL; |
| 2039 | |
| 2040 | // Find indexed iterator. |
| 2041 | typePathExpandoMap::iterator expandoItr = PathExpandos.begin(); |
| 2042 | while (expandoIndex > 0) { ++expandoItr; --expandoIndex; } |
| 2043 | |
| 2044 | return expandoItr->key; |
| 2045 | } |
| 2046 | |
| 2047 | //----------------------------------------------------------------------------- |
| 2048 |
no test coverage detected