Skip to content

Android should use isfinite, isinf, isnan and signbit from the std namespace #51

@dront78

Description

@dront78

https://bugs.webkit.org/show_bug.cgi?id=37948

same here with latest ndk and poco 1.4.5, overwise it fails on
Foundation/include/Poco/FPEnvironment_DUMMY.h

to fix a problem

include

inline bool FPEnvironmentImpl::isInfiniteImpl(float value)
{
return std::isinf(value) != 0;
}

inline bool FPEnvironmentImpl::isInfiniteImpl(double value)
{
return std::isinf(value) != 0;
}

inline bool FPEnvironmentImpl::isInfiniteImpl(long double value)
{
return std::isinf((double) value) != 0;
}

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions