| 70 | } |
| 71 | |
| 72 | static void pathTranslator_Init() |
| 73 | { |
| 74 | if (pathMapping == nullptr) { |
| 75 | pathMapping = new(pathMappingStorage) unordered_map<string, string>; |
| 76 | populatePathMapping(getenv(ENV_PATH_MAPPING)); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | static void pathTranslator_Restart() |
| 81 | { |
no test coverage detected