diff options
author | Ali Mohammad Pur <ali.mpfard@gmail.com> | 2022-06-25 19:11:28 +0430 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-26 22:21:17 +0100 |
commit | 2104e9a6e4e465f30d4e029e9a8c22b26265c22b (patch) | |
tree | 030521a1c7d264673201c04147d097037b76afe4 /AK/Platform.h | |
parent | 0e2f4c50d3c7719115710d72d3ec006b0b719c5e (diff) | |
download | serenity-2104e9a6e4e465f30d4e029e9a8c22b26265c22b.zip |
AK: Recognize __CLION_IDE__ as well as __CLION_IDE_
This used to be `__CLION_IDE_` before, but it seems to have been fixed
in the latest EAP.
Diffstat (limited to 'AK/Platform.h')
-rw-r--r-- | AK/Platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/Platform.h b/AK/Platform.h index b1534436d5..d6e6c689e1 100644 --- a/AK/Platform.h +++ b/AK/Platform.h @@ -35,7 +35,7 @@ # define VALIDATE_IS_X86() static_assert(false, "Trying to include x86 only header on non x86 platform"); #endif -#if !defined(__clang__) && !defined(__CLION_IDE_) +#if !defined(__clang__) && !defined(__CLION_IDE_) && !defined(__CLION_IDE__) # define AK_HAS_CONDITIONALLY_TRIVIAL #endif |