MCPcopy Create free account
hub / github.com/fmtlib/fmt / format_message

Function format_message

test/format-test.cc:2011–2014  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2009
2010template <typename... Args>
2011std::string format_message(int id, const char* format, const Args&... args) {
2012 auto va = fmt::make_format_args(args...);
2013 return vformat_message(id, format, va);
2014}
2015
2016TEST(format_test, format_message_example) {
2017 EXPECT_EQ("[42] something happened",

Callers 1

TESTFunction · 0.85

Calls 2

make_format_argsFunction · 0.85
vformat_messageFunction · 0.85

Tested by

no test coverage detected