From f9ce8fd03b4fc99121262e5b55465332b8c1957a Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Thu, 29 Jun 2017 11:43:20 +0100 Subject: [PATCH] Added some missing cstring includes --- projects/SelfTest/String.tests.cpp | 2 ++ projects/SelfTest/StringRef.tests.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/projects/SelfTest/String.tests.cpp b/projects/SelfTest/String.tests.cpp index ccd90964..c27b7508 100644 --- a/projects/SelfTest/String.tests.cpp +++ b/projects/SelfTest/String.tests.cpp @@ -2,6 +2,8 @@ #include "catch.hpp" +#include + TEST_CASE( "String", "[Strings]" ) { using Catch::String; diff --git a/projects/SelfTest/StringRef.tests.cpp b/projects/SelfTest/StringRef.tests.cpp index e5da3f2a..4ebaa878 100644 --- a/projects/SelfTest/StringRef.tests.cpp +++ b/projects/SelfTest/StringRef.tests.cpp @@ -3,6 +3,8 @@ #include "catch.hpp" +#include + namespace Catch { // Implementation of test accessors