| 2112 | //----------------------------------------------------------------------------- |
| 2113 | |
| 2114 | StringTableEntry getPathExpandoKey(U32 expandoIndex) |
| 2115 | { |
| 2116 | // Finish if index is out of range. |
| 2117 | if (expandoIndex >= PathExpandos.size()) |
| 2118 | return NULL; |
| 2119 | |
| 2120 | // Find indexed iterator. |
| 2121 | typePathExpandoMap::iterator expandoItr = PathExpandos.begin(); |
| 2122 | while (expandoIndex > 0) { ++expandoItr; --expandoIndex; } |
| 2123 | |
| 2124 | return expandoItr->key; |
| 2125 | } |
| 2126 | |
| 2127 | //----------------------------------------------------------------------------- |
| 2128 |
no test coverage detected