Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
dront78 opened this issue Jan 4, 2013 · 2 comments
Assignees
Milestone

Comments

@dront78
Copy link

dront78 commented Jan 4, 2013

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;
}

aleks-f added a commit that referenced this issue Jan 5, 2013
…e std namespace

GH #51: Android should use isfinite, isinf, isnan and signbit from the
std namespace
@aleks-f
Copy link
Member

aleks-f commented Jan 5, 2013

changed in a separate branch to allow for some more testing:

FP-dummy-android

@ghost ghost assigned aleks-f Jan 5, 2013
@aleks-f
Copy link
Member

aleks-f commented Jan 5, 2013

merged to develop for 1.5.1 release:

9b3fc90

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants