Skip to content

Commit

Permalink
Fix compile error on GCC 6
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Mar 3, 2016
1 parent 4f2e047 commit 686443b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/function.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#if defined(_MSC_VER)
# define isnan _isnan
#else
# define isnan std::isnan
# define isnan(x) std::isnan(x)
#endif

struct func_info;
Expand Down

0 comments on commit 686443b

Please sign in to comment.