Files

16 lines
386 B
C++
Raw Permalink Normal View History

#pragma once
#include "enchantum.hpp"
#include <format>
#include <string_view>
#include "details/format_util.hpp"
template<enchantum::Enum E>
struct std::formatter<E> : std::formatter<string_view> {
template<typename FmtContext>
constexpr auto format(const E e, FmtContext& ctx) const
{
return std::formatter<string_view>::format(enchantum::details::format(e), ctx);
}
};