File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515endif ()
1616
1717add_versioned_package ("gh:boostorg/mp11#boost-1.83.0" )
18- fmt_recipe (10.2.1 )
18+ fmt_recipe (11.1.3 )
1919add_versioned_package ("gh:intel/cpp-baremetal-concurrency#06e5901" )
2020
2121if (NOT DEFINED CMAKE_CXX_STANDARD )
Original file line number Diff line number Diff line change 1919#include < string_view>
2020#include < utility>
2121
22- template <std::size_t N>
23- struct fmt ::formatter<stdx::ct_string<N>> : fmt::formatter<std::string_view> {
24- template <typename Ctx>
25- constexpr auto format (stdx::ct_string<N> const &s, Ctx &ctx) const {
26- return fmt::formatter<std::string_view>::format (std::string_view{s},
27- ctx);
28- }
29- };
30-
3122namespace stdx {
3223inline namespace v1 {
24+ template <std::size_t N> constexpr auto format_as (stdx::ct_string<N> const &s) {
25+ return std::string_view{s};
26+ }
27+
3328template <typename Str, typename Args> struct format_result {
3429 CONSTEVAL static auto
3530 ct_string_convertible () -> std::bool_constant<Args::size() == 0 >;
You can’t perform that action at this time.
0 commit comments