mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-17 07:13:27 +02:00
Merge pull request #58 from davidraleigh/develop
remove std:: namespace from copysignf and copysign
This commit is contained in:
commit
a867fb884d
@ -131,13 +131,13 @@ inline bool FPEnvironmentImpl::isNaNImpl(long double value)
|
||||
|
||||
inline float FPEnvironmentImpl::copySignImpl(float target, float source)
|
||||
{
|
||||
return std::copysignf(target, source);
|
||||
return copysignf(target, source);
|
||||
}
|
||||
|
||||
|
||||
inline double FPEnvironmentImpl::copySignImpl(double target, double source)
|
||||
{
|
||||
return std::copysign(target, source);
|
||||
return copysign(target, source);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user