Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
build: fix linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
boingoing committed Nov 17, 2018
1 parent d6afc9e commit 96f60bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/chakrashim/src/v8value.cc
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ Maybe<int64_t> Value::IntegerValue(Local<Context> context) const {
}

double value = maybe.FromJust();
if (std::isnan(value)) {
if (isnan(value)) {
return Just<int64_t>(0);
}

Expand Down

0 comments on commit 96f60bb

Please sign in to comment.