From 8866ca64dc913d274f25da401c321cc5d2193790 Mon Sep 17 00:00:00 2001 From: Patrick Gartung Date: Fri, 13 May 2022 16:10:23 +0200 Subject: [PATCH] Update for macro name change --- FWCore/Utilities/interface/CMSUnrollLoop.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FWCore/Utilities/interface/CMSUnrollLoop.h b/FWCore/Utilities/interface/CMSUnrollLoop.h index e76c7b90f23be..3e6e9b3fba339 100644 --- a/FWCore/Utilities/interface/CMSUnrollLoop.h +++ b/FWCore/Utilities/interface/CMSUnrollLoop.h @@ -30,9 +30,9 @@ #elif defined(__INTEL_COMPILER) // Intel icc compiler -#define CMS_UNROLL_LOOP _Pragma(STRINGIFY(unroll)) -#define CMS_UNROLL_LOOP_COUNT(N) _Pragma(STRINGIFY(unroll(N))) -#define CMS_UNROLL_LOOP_DISABLE _Pragma(STRINGIFY(nounroll)) +#define CMS_UNROLL_LOOP _Pragma(EDM_STRINGIFY(unroll)) +#define CMS_UNROLL_LOOP_COUNT(N) _Pragma(EDM_STRINGIFY(unroll(N))) +#define CMS_UNROLL_LOOP_DISABLE _Pragma(EDM_STRINGIFY(nounroll)) #elif defined(__GNUC__) // GCC host compiler