| 1349 | //----------------------------------------------------------------------------- |
| 1350 | |
| 1351 | bool isPathExpando( const char* pExpandoName ) |
| 1352 | { |
| 1353 | // Sanity! |
| 1354 | AssertFatal( pExpandoName != NULL, "Expando name cannot be NULL." ); |
| 1355 | |
| 1356 | // Fetch expando name. |
| 1357 | StringTableEntry expandoName = StringTable->insert( pExpandoName ); |
| 1358 | |
| 1359 | return PathExpandos.contains( expandoName ); |
| 1360 | } |
| 1361 | |
| 1362 | //----------------------------------------------------------------------------- |
| 1363 |
no test coverage detected