isfinite compilation fix.

This commit is contained in:
Alex Zolotarev 2016-03-17 14:16:02 +03:00 committed by Sergey Yershov
parent ac61f4e77b
commit 85dead2eb1
3 changed files with 5 additions and 4 deletions

View file

@ -1,10 +1,10 @@
#include "base/string_utils.hpp"
#include "base/assert.hpp"
#include "base/string_utils.hpp"
#include "std/target_os.hpp"
#include "std/iterator.hpp"
#include "std/cmath.hpp"
#include "std/iomanip.hpp"
#include "std/iterator.hpp"
#include "std/target_os.hpp"
#include <boost/algorithm/string/trim.hpp>

View file

@ -148,7 +148,7 @@ bool FromStringArray(string const & s, T(&arr)[N])
size_t count = 0;
while (count < N && in >> arr[count])
{
if (!std::isfinite(arr[count]))
if (!isfinite(arr[count]))
return false;
++count;
}

View file

@ -12,6 +12,7 @@
#endif
using std::abs;
using std::isfinite;
namespace math
{