Skip to content

Commit

Permalink
Merge pull request #58 from davidraleigh/develop
Browse files Browse the repository at this point in the history
remove std:: namespace from copysignf and copysign
  • Loading branch information
aleks-f committed Jan 12, 2013
2 parents 20c5812 + c1b8673 commit a867fb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Foundation/include/Poco/FPEnvironment_DUMMY.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}


Expand Down

0 comments on commit a867fb8

Please sign in to comment.