diff --git a/CommonLibF4/include/RE/Bethesda/BSFixedString.h b/CommonLibF4/include/RE/Bethesda/BSFixedString.h index eca22314..81ba4145 100644 --- a/CommonLibF4/include/RE/Bethesda/BSFixedString.h +++ b/CommonLibF4/include/RE/Bethesda/BSFixedString.h @@ -323,3 +323,13 @@ namespace RE }; static_assert(std::is_empty_v); } + +template +struct std::formatter, CharT> : formatter +{ + template + constexpr auto format(const RE::detail::BSFixedString& a_version, FormatContext& a_ctx) const + { + return formatter::format(a_version.c_str(), a_ctx); + } +};