MCPcopy Create free account
hub / github.com/Profactor/cv-plot / to_string

Function to_string

CvPlot/ext/catch2/inc/catch.hpp:11290–11298  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11288namespace Catch {
11289 template <typename T>
11290 std::string to_string(T const& t) {
11291#if defined(CATCH_CONFIG_CPP11_TO_STRING)
11292 return std::to_string(t);
11293#else
11294 ReusableStringStream rss;
11295 rss << t;
11296 return rss.str();
11297#endif
11298 }
11299} // end namespace Catch
11300
11301// end catch_to_string.hpp

Callers 2

examples_core.cppFile · 0.85
examples_gui.cppFile · 0.85

Calls 1

strMethod · 0.80

Tested by

no test coverage detected