summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorFabio Buso <dev.siroibaf@gmail.com>2016-02-25 09:45:03 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-03-09 10:03:57 +0000
commitb009252f78d5106c11c0eed601a0889dd3366bb1 (patch)
tree29ae4911de884380aae8cc0f5f71e08080710ddd /xmloff
parent23498672666312dcda769567f818853ce7810a2e (diff)
Use rtl::math::isNan()
isnan() not found causes compilation error System: Archlinux (Kernel Version 4.4) - GCC 5.3.0 Change-Id: Id0bb4555428896678437e8abf228f1c208f1e7a0 Reviewed-on: https://gerrit.libreoffice.org/22695 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/22917 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/draw/ximp3dscene.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmloff/source/draw/ximp3dscene.cxx b/xmloff/source/draw/ximp3dscene.cxx
index 83c20330bfb1..971fda1607fc 100644
--- a/xmloff/source/draw/ximp3dscene.cxx
+++ b/xmloff/source/draw/ximp3dscene.cxx
@@ -18,6 +18,7 @@
*/
#include <sax/tools/converter.hxx>
+#include <rtl/math.hxx>
#include "ximp3dscene.hxx"
#include <xmloff/xmluconv.hxx>
@@ -66,7 +67,7 @@ SdXML3DLightContext::SdXML3DLightContext(
{
::basegfx::B3DVector aVal;
SvXMLUnitConverter::convertB3DVector(aVal, sValue);
- if (!isnan(aVal.getX()) && !isnan(aVal.getY()) && !isnan(aVal.getZ()))
+ if (!rtl::math::isNan(aVal.getX()) && !rtl::math::isNan(aVal.getY()) && !rtl::math::isNan(aVal.getZ()))
{
maDirection = aVal;
}