Function toString
Synopsis
#include <include/internal/catch_approx.h>
std::string toString() const
Description
No description yet.
Source
Lines 46-50 in include/internal/catch_approx.cpp. Line 110 in include/internal/catch_approx.h.
std::string Approx::toString() const {
ReusableStringStream rss;
rss << "Approx( " << ::Catch::Detail::stringify( m_value ) << " )";
return rss.str();
}