Skip to content

Commit 010a46e

Browse files
committed
Repair STRINGIFY for Cray Fortran
1 parent 652d82f commit 010a46e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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-
# ifdef __GFORTRAN__
17+
# if defined(__GFORTRAN__) || defined(_CRAYFTN)
1818
# define STRINGIFY(x) "x"
1919
# else
2020
# define STRINGIFY(x) #x

0 commit comments

Comments
 (0)