| 160 | } |
| 161 | |
| 162 | bool checkAndMuteWarning(LogGuard & logGuard, const std::string str) |
| 163 | { |
| 164 | const std::string pattern = R"(\[OpenColorIO Warning\]: )" + str + R"([\.\r\n]+)"; |
| 165 | return logGuard.findAllAndRemove(pattern); |
| 166 | } |
| 167 | |
| 168 | bool checkAndMuteError(LogGuard & logGuard, const std::string str) |
| 169 | { |
no test coverage detected