From 6950735b0ab888b96477dccd06421c0811367bac Mon Sep 17 00:00:00 2001 From: Damian Rouson Date: Fri, 8 Nov 2024 13:48:00 -0800 Subject: [PATCH] fix(build): implement STRINGIFY operator for NAG --- include/assert_macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/assert_macros.h b/include/assert_macros.h index 4a058a9..63e014b 100644 --- a/include/assert_macros.h +++ b/include/assert_macros.h @@ -14,7 +14,7 @@ ! Deal with stringification issues: ! https://gcc.gnu.org/legacy-ml/fortran/2009-06/msg00131.html #ifndef STRINGIFY -# if defined(__GFORTRAN__) || defined(_CRAYFTN) +# if defined(__GFORTRAN__) || defined(_CRAYFTN) || defined(NAGFOR) # define STRINGIFY(x) "x" # else # define STRINGIFY(x) #x