From 06e050a0cb6486c9200e3b8ba6a65f8bf8aa8704 Mon Sep 17 00:00:00 2001 From: stolmie Date: Tue, 27 Aug 2019 20:08:32 +0100 Subject: [PATCH] Add out-of-box compiling for Intel Compiler v19.0. --- include/fmt/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index 6d3df186..6e53bd42 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -119,7 +119,7 @@ #endif #ifndef FMT_DEPRECATED -# if defined(__INTEL_COMPILER) +# if defined(__INTEL_COMPILER) // Tested with Intel Compiler v19.0 at all available language levels. # define FMT_DEPRECATED [[gnu::deprecated]] # elif (FMT_HAS_CPP_ATTRIBUTE(deprecated) && __cplusplus >= 201402L) || \ FMT_MSC_VER >= 1900