| 418 | } |
| 419 | |
| 420 | static void FixFilePath(String& fileName) |
| 421 | { |
| 422 | for (int i = 0; i < (int)fileName.length(); i++) |
| 423 | if (fileName[i] == DIR_SEP_CHAR_ALT) |
| 424 | fileName[i] = DIR_SEP_CHAR; |
| 425 | #ifdef _WIN32 |
| 426 | else |
| 427 | fileName[i] = (char)::toupper((uint8)fileName[i]); |
| 428 | #endif |
| 429 | } |
| 430 | |
| 431 | static int gCheckCount = 0; |
| 432 |
no test coverage detected