From 89e696ba877a6fcaa32f9540fc19d208fbfe0453 Mon Sep 17 00:00:00 2001 From: Ilya Grebnov Date: Fri, 14 Jan 2022 20:06:38 -0800 Subject: [PATCH] Fixed completion for non-x86 platforms. --- common/platform.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/platform.h b/common/platform.h index 51ab8a5..9a01609 100644 --- a/common/platform.h +++ b/common/platform.h @@ -45,8 +45,8 @@ NOTICE: This file has been modified for use in the bsc-m03 project. #if defined(_MSC_VER) #include -#else - #include +#elif defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) + #include #endif #if defined(__GNUC__)