| Index: src/platform-freebsd.cc
|
| diff --git a/src/platform-freebsd.cc b/src/platform-freebsd.cc
|
| index eadcf55f283fd403ee26de824c57f527d0b99143..4305ccb28888888795757d2101948d0c5eb64166 100644
|
| --- a/src/platform-freebsd.cc
|
| +++ b/src/platform-freebsd.cc
|
| @@ -103,7 +103,7 @@ int OS::ActivationFrameAlignment() {
|
|
|
|
|
| const char* OS::LocalTimezone(double time) {
|
| - if (isnan(time)) return "";
|
| + if (std::isnan(time)) return "";
|
| time_t tv = static_cast<time_t>(floor(time/msPerSecond));
|
| struct tm* t = localtime(&tv);
|
| if (NULL == t) return "";
|
|
|