Skip to content

Commit

Permalink
Changed constexpr check in test.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ScriptExec authored and sheredom committed Jul 17, 2024
1 parent ca2acbf commit a781470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#endif
#endif

#if defined(utf8_cplusplus) && utf8_cplusplus >= 201402L
#if defined(utf8_cplusplus) && utf8_cplusplus >= 201402L && (!defined(_MSC_VER) || (defined(_MSC_VER) && _MSC_VER >= 1910))
constexpr void test() {
constexpr utf8_int8_t in_str[20]{};
constexpr utf8_int32_t in_chr{};
Expand Down

0 comments on commit a781470

Please sign in to comment.