1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 20:47:45 +00:00

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.
This commit is contained in:
Ali Mohammad Pur 2022-06-25 19:11:28 +04:30 committed by Linus Groh
parent 0e2f4c50d3
commit 2104e9a6e4
2 changed files with 2 additions and 2 deletions

View file

@ -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