MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/TriangleMeshDistance / to_string

Function to_string

tests/catch.hpp:9076–9084  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9074namespace Catch {
9075 template <typename T>
9076 std::string to_string(T const& t) {
9077#if defined(CATCH_CONFIG_CPP11_TO_STRING)
9078 return std::to_string(t);
9079#else
9080 ReusableStringStream rss;
9081 rss << t;
9082 return rss.str();
9083#endif
9084 }
9085} // end namespace Catch
9086
9087// end catch_to_string.hpp

Callers 1

describeMethod · 0.85

Calls 1

strMethod · 0.80

Tested by

no test coverage detected