Skip to content

Commit

Permalink
fix(build): implement STRINGIFY operator for NAG
Browse files Browse the repository at this point in the history
  • Loading branch information
rouson committed Nov 8, 2024
1 parent e80dee5 commit 6950735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/assert_macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6950735

Please sign in to comment.