Kaydet (Commit) 81bce2dc authored tarafından Miklos Vajna's avatar Miklos Vajna

Remove unused basegfx::copySign

Change-Id: I8e5e429b0f0b0cfa2dc65b8e57649bfa722b40e0
üst 0c0fbc3f
......@@ -148,17 +148,6 @@ namespace basegfx
*/
BASEGFX_DLLPUBLIC double snapToNearestMultiple(double v, const double fStep);
/** return fValue with the sign of fSignCarrier, thus evtl. changed
*/
inline double copySign(double fValue, double fSignCarrier)
{
#ifdef WNT
return _copysign(fValue, fSignCarrier);
#else
return copysign(fValue, fSignCarrier);
#endif
}
class BASEGFX_DLLPUBLIC fTools
{
public:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment