Skip to content

Commit

Permalink
Merge pull request #89 from peternowee/fix-mac-isnan
Browse files Browse the repository at this point in the history
Use ISNAN() to prevent build error on OS X 10.7
  • Loading branch information
hadley committed Sep 30, 2015
2 parents f67f446 + 4a27009 commit 6716a73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MyBinding.h
Expand Up @@ -97,7 +97,7 @@ class MyBinding {
}
case MY_DATE:
case MY_DATE_TIME:
if (isnan(REAL(col)[i])) {
if (ISNAN(REAL(col)[i])) {
missing = true;
break;
} else {
Expand Down

0 comments on commit 6716a73

Please sign in to comment.