Skip to content

Commit 1c60620

Browse files
committed
fix(build): implement STRINGIFY operator for NAG
1 parent 0ee6a6d commit 1c60620

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/assert_macros.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
! Deal with stringification issues:
1515
! https://gcc.gnu.org/legacy-ml/fortran/2009-06/msg00131.html
1616
#ifndef STRINGIFY
17-
# if defined(__GFORTRAN__) || defined(_CRAYFTN)
17+
# if defined(__GFORTRAN__) || defined(_CRAYFTN) || defined(NAGFOR)
1818
# define STRINGIFY(x) "x"
1919
# else
2020
# define STRINGIFY(x) #x

0 commit comments

Comments
 (0)