MCPcopy Create free account
hub / github.com/LemLib/LemLib / fixed_string

Method fixed_string

include/fmt/format.h:1002–1004  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1000#if FMT_USE_NONTYPE_TEMPLATE_ARGS
1001template <typename Char, size_t N> struct fixed_string {
1002 constexpr fixed_string(const Char (&str)[N]) {
1003 detail::copy_str<Char, const Char*, Char*>(static_cast<const Char*>(str), str + N, data);
1004 }
1005
1006 Char data[N] = {};
1007};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected