forked from organicmaps/organicmaps
isfinite compilation fix.
This commit is contained in:
parent
ac61f4e77b
commit
85dead2eb1
3 changed files with 5 additions and 4 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
#endif
|
||||
|
||||
using std::abs;
|
||||
using std::isfinite;
|
||||
|
||||
namespace math
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue