/////////////////////////////////////////////////////////////////////////// No duplicates.
| 1324 | //////////////////////////////////////////////////////////////////////////////// |
| 1325 | // No duplicates. |
| 1326 | void Context::error(const std::string& input) { |
| 1327 | if (input.length() && std::find(errors.begin(), errors.end(), input) == errors.end()) |
| 1328 | errors.push_back(input); |
| 1329 | } |
| 1330 | |
| 1331 | //////////////////////////////////////////////////////////////////////////////// |
| 1332 | void Context::debug(const std::string& input) { |
no outgoing calls
no test coverage detected