Skip to content

Commit

Permalink
Squashed 'src/' changes from 11d588ed..e1de8e81
Browse files Browse the repository at this point in the history
e1de8e81 Closes usgs-coupled/phast3#2 (#3)

git-subtree-dir: src
git-subtree-split: e1de8e819060ecaf6d402694b29d70ffd0a3bf10
  • Loading branch information
Darth Vader committed Mar 8, 2023
1 parent cb83429 commit bae73ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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 bae73ba

Please # to comment.