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

Function print_error

test/format-test.cc:2022–2026  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2020
2021template <typename... Args>
2022void print_error(const char* file, int line, const char* format,
2023 const Args&... args) {
2024 fmt::print("{}: {}: ", file, line);
2025 fmt::print(format, args...);
2026}
2027
2028TEST(format_test, unpacked_args) {
2029 EXPECT_EQ("0123456789abcdefg",

Callers

nothing calls this directly

Calls 1

printFunction · 0.50

Tested by

no test coverage detected