| 45 | } |
| 46 | |
| 47 | static bool CheckBoolean(const std::string& arg) |
| 48 | { |
| 49 | if (stricmp(arg.c_str(), "YES") == 0) |
| 50 | return true; |
| 51 | if (stricmp(arg.c_str(), "NO") == 0) |
| 52 | return false; |
| 53 | Fail(StrFormat("Invalid boolean argument: %s", arg.c_str())); |
| 54 | return false; |
| 55 | } |
| 56 | |
| 57 | BlContext* blContext; |
| 58 | std::vector<std::string> fileNames; |
no test coverage detected