From b083b04126f0b221faad47116c878fb2ef4daef6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Sun, 19 Nov 2017 14:47:18 +0100 Subject: [PATCH] Fix compilation when using g++ with libc++ Fixes #1110 --- include/internal/catch_tostring.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/internal/catch_tostring.h b/include/internal/catch_tostring.h index 40d61479..374b5e9b 100644 --- a/include/internal/catch_tostring.h +++ b/include/internal/catch_tostring.h @@ -26,7 +26,7 @@ // We need a dummy global operator<< so we can bring it into Catch namespace later -struct Catch_global_namespace_dummy; +struct Catch_global_namespace_dummy {}; std::ostream& operator<<(std::ostream&, Catch_global_namespace_dummy); namespace Catch {