1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-09 23:34:23 +00:00

try fix IntelliSence

This commit is contained in:
neargye 2022-08-08 14:15:53 +04:00
parent 0dfa61e757
commit f5d6f707a9

View file

@ -213,7 +213,7 @@ class static_string {
template <std::uint16_t... I>
constexpr static_string(string_view str, std::integer_sequence<std::uint16_t, I...>) noexcept : chars_{str[I]..., '\0'} {}
char chars_[N + 1];
char chars_[static_cast<std::size_t>(N) + 1];
};
template <>