MCPcopy Create free account
hub / github.com/RenderKit/embree / to_string

Function to_string

tutorials/external/catch.hpp:9302–9310  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9300namespace Catch {
9301 template <typename T>
9302 std::string to_string(T const& t) {
9303#if defined(CATCH_CONFIG_CPP11_TO_STRING)
9304 return std::to_string(t);
9305#else
9306 ReusableStringStream rss;
9307 rss << t;
9308 return rss.str();
9309#endif
9310 }
9311} // end namespace Catch
9312
9313// end catch_to_string.hpp

Callers 4

describeMethod · 0.70
mapThreadIDFunction · 0.50
toStringFunction · 0.50
drawGUIMethod · 0.50

Calls 1

strMethod · 0.45

Tested by

no test coverage detected