From 08c8df1e3b20b949751dabeb86e5015484f777fc Mon Sep 17 00:00:00 2001 From: Phil nash Date: Thu, 25 Apr 2019 10:32:55 +0100 Subject: [PATCH] include StringRef, rather than fwd decl, for splitString --- include/internal/catch_string_manip.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/internal/catch_string_manip.h b/include/internal/catch_string_manip.h index 32a7ec1e..f7aa6d4b 100644 --- a/include/internal/catch_string_manip.h +++ b/include/internal/catch_string_manip.h @@ -7,13 +7,13 @@ #ifndef TWOBLUECUBES_CATCH_STRING_MANIP_H_INCLUDED #define TWOBLUECUBES_CATCH_STRING_MANIP_H_INCLUDED +#include "catch_stringref.h" + #include #include namespace Catch { - class StringRef; - bool startsWith( std::string const& s, std::string const& prefix ); bool startsWith( std::string const& s, char prefix ); bool endsWith( std::string const& s, std::string const& suffix );