MCPcopy Create free account
hub / github.com/fmtlib/fmt / operator()

Method operator()

include/fmt/printf.h:190–190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188// string or null otherwise.
189template <typename Char> struct get_cstring {
190 template <typename T> auto operator()(T) -> const Char* { return nullptr; }
191 auto operator()(const Char* s) -> const Char* { return s; }
192};
193

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected