diff --git a/renderdoc/3rdparty/catch/catch.hpp b/renderdoc/3rdparty/catch/catch.hpp index d911bea6a..83b207457 100644 --- a/renderdoc/3rdparty/catch/catch.hpp +++ b/renderdoc/3rdparty/catch/catch.hpp @@ -29,6 +29,16 @@ #define CATCH_CONFIG_FORCE_FALLBACK_STRINGIFIER #define CATCH_CONFIG_INLINE_DEBUG_BREAK +#include "api/replay/basic_types.h" #include "api/replay/stringise.h" -#include "official/catch.hpp" \ No newline at end of file +#include "official/catch.hpp" + +namespace Catch +{ +template <> +struct StringMaker +{ + static std::string convert(rdcstr const &value) { return value; } +}; +} \ No newline at end of file