| 9221 | // start catch_matchers_generic.cpp |
| 9222 | |
| 9223 | std::string Catch::Matchers::Generic::Detail::finalizeDescription(const std::string& desc) { |
| 9224 | if (desc.empty()) { |
| 9225 | return "matches undescribed predicate"; |
| 9226 | } else { |
| 9227 | return "matches predicate: \"" + desc + '"'; |
| 9228 | } |
| 9229 | } |
| 9230 | // end catch_matchers_generic.cpp |
| 9231 | // start catch_matchers_string.cpp |
| 9232 |