diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-04-22 17:36:50 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-04-22 19:08:37 +0200 |
commit | 81bce2dc7e55dba5314b9388d6eb803aa998091a (patch) | |
tree | e1f76100b9a1077e7a1f91e8665faf774c26798f /include/basegfx | |
parent | 0c0fbc3f8b09017c490ae77794aad3e7417b9c23 (diff) |
Remove unused basegfx::copySign
Change-Id: I8e5e429b0f0b0cfa2dc65b8e57649bfa722b40e0
Diffstat (limited to 'include/basegfx')
-rw-r--r-- | include/basegfx/numeric/ftools.hxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/basegfx/numeric/ftools.hxx b/include/basegfx/numeric/ftools.hxx index 5477b36fd475..b4ae0a484bd8 100644 --- a/include/basegfx/numeric/ftools.hxx +++ b/include/basegfx/numeric/ftools.hxx @@ -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: |