Skip to content

Commit 6716a73

Browse files
committed
Merge pull request #89 from peternowee/fix-mac-isnan
Use ISNAN() to prevent build error on OS X 10.7
2 parents f67f446 + 4a27009 commit 6716a73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MyBinding.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class MyBinding {
9797
}
9898
case MY_DATE:
9999
case MY_DATE_TIME:
100-
if (isnan(REAL(col)[i])) {
100+
if (ISNAN(REAL(col)[i])) {
101101
missing = true;
102102
break;
103103
} else {

0 commit comments

Comments
 (0)