Skip to content

Commit

Permalink
Squashed 'IPhreeqcCOM/IPhreeqc/' changes from fe577a1..da9a093
Browse files Browse the repository at this point in the history
da9a093 Closes usgs-coupled/phast3#2 (#3)

git-subtree-dir: IPhreeqcCOM/IPhreeqc
git-subtree-split: da9a093d9aaf63d9336fcf01bfeef5ea9e4f5a87
  • Loading branch information
Darth Vader committed Mar 8, 2023
1 parent f349d4e commit 96451c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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 96451c7

Please # to comment.