Fixed Github Issue #32: "ResultBuilder& operator << should use toString"

This commit is contained in:
Phil Nash 2011-05-11 10:06:28 +01:00
parent 0ea29b7d28
commit 4b24490e1a
1 changed files with 1 additions and 1 deletions

View File

@ -577,7 +577,7 @@ public:
const T & value
)
{
m_messageStream << value;
m_messageStream << Catch::toString( value );
return *this;
}