MCPcopy Create free account
hub / github.com/apache/trafficserver / to_string

Function to_string

lib/catch2/catch.hpp:11463–11471  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11461namespace Catch {
11462 template <typename T>
11463 std::string to_string(T const& t) {
11464#if defined(CATCH_CONFIG_CPP11_TO_STRING)
11465 return std::to_string(t);
11466#else
11467 ReusableStringStream rss;
11468 rss << t;
11469 return rss.str();
11470#endif
11471 }
11472} // end namespace Catch
11473
11474// end catch_to_string.hpp

Callers 15

dump_contextFunction · 0.50
YamlSNIConfig.ccFile · 0.50
_getMethod · 0.50
_getComponentMethod · 0.50
messageMethod · 0.50
messageMethod · 0.50
set_config_recordsFunction · 0.50
messageMethod · 0.50
test_rpcserver.ccFile · 0.50
messageMethod · 0.50
PrintRemapHitCountMethod · 0.50
output_optionMethod · 0.50

Calls 1

strMethod · 0.45

Tested by

no test coverage detected