Skip to content

Commit

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

git-subtree-dir: src
git-subtree-split: da9a093d9aaf63d9336fcf01bfeef5ea9e4f5a87
  • Loading branch information
Darth Vader committed Mar 8, 2023
1 parent ad57aa5 commit a695dad
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 a695dad

Please # to comment.