| 126 | } |
| 127 | |
| 128 | void cmFileCopier::NotBeforeMatch(std::string const& arg) |
| 129 | { |
| 130 | std::ostringstream e; |
| 131 | e << "option " << arg << " may not appear before PATTERN or REGEX."; |
| 132 | this->Status.SetError(e.str()); |
| 133 | this->Doing = DoingError; |
| 134 | } |
| 135 | |
| 136 | void cmFileCopier::NotAfterMatch(std::string const& arg) |
| 137 | { |
no test coverage detected