From 5bb88566559b581dccf6728e810a2fa23fada328 Mon Sep 17 00:00:00 2001 From: Pramod Kumbhar Date: Mon, 9 Mar 2020 19:25:38 +0100 Subject: [PATCH] Workaround for broken [[deprecated]] in PGI compiler (#1581) * Workaround broken [[deprecated]] in PGI compiler - similar to Intel and NVCC, add workaround for PGI compiler --- include/fmt/core.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index 0e6422d9..5496d895 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -147,8 +147,8 @@ # endif #endif -// Workaround broken [[deprecated]] in the Intel compiler and NVCC. -#if defined(__INTEL_COMPILER) || FMT_NVCC +// Workaround broken [[deprecated]] in the Intel, PGI and NVCC compiler +#if defined(__INTEL_COMPILER) || defined(__PGI) || FMT_NVCC # define FMT_DEPRECATED_ALIAS #else # define FMT_DEPRECATED_ALIAS FMT_DEPRECATED @@ -259,7 +259,8 @@ namespace internal { // A workaround for gcc 4.8 to make void_t work in a SFINAE context. template struct void_t_impl { using type = void; }; -FMT_NORETURN FMT_API void assert_fail(const char* file, int line, const char* message); +FMT_NORETURN FMT_API void assert_fail(const char* file, int line, + const char* message); #ifndef FMT_ASSERT # ifdef NDEBUG