1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-10 23:44:29 +00:00
This commit is contained in:
neargye 2019-11-23 19:40:30 +05:00
parent 35fe1b1a20
commit 3393b85145

View file

@ -111,7 +111,7 @@ struct static_string {
template <std::size_t... I> template <std::size_t... I>
constexpr static_string(std::string_view str, std::index_sequence<I...>) noexcept : chars{{str[I]...}} {} constexpr static_string(std::string_view str, std::index_sequence<I...>) noexcept : chars{{str[I]...}} {}
const std::array<const char, N> chars; const std::array<char, N> chars;
}; };
template <> template <>