| 2127 | //----------------------------------------------------------------------------- |
| 2128 | |
| 2129 | StringTableEntry getPathExpandoValue(U32 expandoIndex) |
| 2130 | { |
| 2131 | // Finish if index is out of range. |
| 2132 | if (expandoIndex >= PathExpandos.size()) |
| 2133 | return NULL; |
| 2134 | |
| 2135 | // Find indexed iterator. |
| 2136 | typePathExpandoMap::iterator expandoItr = PathExpandos.begin(); |
| 2137 | while (expandoIndex > 0) { ++expandoItr; --expandoIndex; } |
| 2138 | |
| 2139 | return expandoItr->value; |
| 2140 | } |
| 2141 | |
| 2142 | //----------------------------------------------------------------------------- |
| 2143 |
no test coverage detected