Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
scharlton2 authored Mar 8, 2023
1 parent 09c8abe commit 57fdbd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IPhreeqcPhast/IPhreeqc/phreeqcpp/Phreeqc.h
Original file line number Diff line number Diff line change
Expand Up @@ -1846,7 +1846,7 @@ isfinite handling
# if __GNUC__ && (__cplusplus >= 201103L)
# define PHR_ISFINITE(x) std::isfinite(x)
# else
# define PHR_ISFINITE(x) isfinite(x)
# define PHR_ISFINITE(x) std::isfinite(x) /* changed when <math.h> was changed to <cmath> */
# endif
#elif defined(HAVE_FINITE)
# define PHR_ISFINITE(x) finite(x)
Expand Down

0 comments on commit 57fdbd7

Please # to comment.