From 8f0ccf7371aec4379d770e83d829d73ca01dacbc Mon Sep 17 00:00:00 2001 From: greg Date: Fri, 6 Sep 2019 13:52:12 -0400 Subject: [PATCH] possible fix for issue #30 --- parallel_hashmap/phmap_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parallel_hashmap/phmap_config.h b/parallel_hashmap/phmap_config.h index f679f1a..7217214 100644 --- a/parallel_hashmap/phmap_config.h +++ b/parallel_hashmap/phmap_config.h @@ -391,7 +391,7 @@ #define PHMAP_ATTRIBUTE_ALWAYS_INLINE #endif -#if PHMAP_HAVE_ATTRIBUTE(noinline) || (defined(__GNUC__) && !defined(__clang__)) +#if PHMAP_HAVE_ATTRIBUTE(noinline) || (defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER)) #define PHMAP_ATTRIBUTE_NOINLINE __attribute__((noinline)) #define PHMAP_HAVE_ATTRIBUTE_NOINLINE 1 #else