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

Method fixed_string

include/fmt/format.h:968–971  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

966namespace detail {
967template <typename Char, size_t N> struct fixed_string {
968 FMT_CONSTEXPR fixed_string(const Char (&s)[N]) {
969 detail::copy<Char, const Char*, Char*>(static_cast<const Char*>(s), s + N,
970 data);
971 }
972 Char data[N] = {};
973};
974

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected