MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / to_string

Function to_string

Bcore/src/main/cpp/Dobby/tests/catch.hpp:7683–7691  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7681
7682namespace Catch {
7683template <typename T> std::string to_string(T const &t) {
7684#if defined(CATCH_CONFIG_CPP11_TO_STRING)
7685 return std::to_string(t);
7686#else
7687 ReusableStringStream rss;
7688 rss << t;
7689 return rss.str();
7690#endif
7691}
7692} // end namespace Catch
7693
7694// end catch_to_string.hpp

Callers 1

describeMethod · 0.85

Calls 1

strMethod · 0.45

Tested by

no test coverage detected