From 899c5ed3df6fa1081b36476d9ce80310668458a7 Mon Sep 17 00:00:00 2001 From: Jozef Grajciar Date: Sat, 19 Jan 2019 23:03:25 +0100 Subject: [PATCH] Console Colour: fix compilation --- include/internal/catch_console_colour.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/internal/catch_console_colour.cpp b/include/internal/catch_console_colour.cpp index 863e0d67..07072db6 100644 --- a/include/internal/catch_console_colour.cpp +++ b/include/internal/catch_console_colour.cpp @@ -160,7 +160,7 @@ namespace { private: void setColour( const char* _escapeCode ) { - getCurrentContext().getConfig().stream() + getCurrentContext().getConfig()->stream() << '\033' << _escapeCode; } };