initial commit

This commit is contained in:
Henry Winkel
2023-02-16 17:50:38 +01:00
parent e9bfac3c10
commit 9d76994e31
425 changed files with 102538 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include "catch_matchers_generic.hpp"
std::string Catch::Matchers::Generic::Detail::finalizeDescription(const std::string& desc) {
if (desc.empty()) {
return "matches undescribed predicate";
} else {
return "matches predicate: \"" + desc + '"';
}
}