diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-27 16:45:45 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-27 16:49:48 +0100 |
commit | 1756ee2afde0659430f3a8f7e50a6734ce7519c7 (patch) | |
tree | b1136538d6a637d275cfa974d41e76015967785e /compat | |
parent | 741fb2b226acf840ec1a9ddfdef3dcaf452ee66e (diff) |
workaround CLion Nova analysis bug
Diffstat (limited to 'compat')
-rw-r--r-- | compat/prelude.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/prelude.hpp b/compat/prelude.hpp index 5a33e2e9..847b378f 100644 --- a/compat/prelude.hpp +++ b/compat/prelude.hpp @@ -15,7 +15,7 @@ #define WARN (::Corrade::Utility::Warning{}) #define ERR (::Corrade::Utility::Error{}) -#if !(defined __cpp_size_t_suffix || defined _MSC_VER && _MSVC_LANG < 202004) +#if defined __CLION_IDE__ || !(defined __cpp_size_t_suffix || defined _MSC_VER && _MSVC_LANG < 202004) #ifdef _MSC_VER #pragma system_header #else |