From 2104e9a6e4e465f30d4e029e9a8c22b26265c22b Mon Sep 17 00:00:00 2001 From: Ali Mohammad Pur Date: Sat, 25 Jun 2022 19:11:28 +0430 Subject: 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. --- AK/Platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'AK/Platform.h') 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 -- cgit v1.2.3