From 4b24490e1a2218279d978d5e93ff09e0bd58d5f0 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Wed, 11 May 2011 10:06:28 +0100 Subject: [PATCH] Fixed Github Issue #32: "ResultBuilder& operator << should use toString" --- include/internal/catch_capture.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/internal/catch_capture.hpp b/include/internal/catch_capture.hpp index 9db8503d..b7ffb230 100644 --- a/include/internal/catch_capture.hpp +++ b/include/internal/catch_capture.hpp @@ -577,7 +577,7 @@ public: const T & value ) { - m_messageStream << value; + m_messageStream << Catch::toString( value ); return *this; }