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:
parent
0dfa61e757
commit
f5d6f707a9
1 changed files with 1 additions and 1 deletions
|
|
@ -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 <>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue