summaryrefslogtreecommitdiff
path: root/basic/source/sbx/sbxconv.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-11-07 08:03:01 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-11-07 08:03:34 +0100
commitf996a5a153e1b7ff81d9343eedee244e585ecab9 (patch)
treefeb1915f266ed6b4e8e1ff0ee24f0cd39c9cf251 /basic/source/sbx/sbxconv.hxx
parentc0c69ccd2aac45e4cca0de7d4deaa6d02ec27f4d (diff)
basic: fix Android build
rtl::math::round() is fine here, I guess. Change-Id: I4d92bc191182ff531e11d20ef87c69dc99da2b32
Diffstat (limited to 'basic/source/sbx/sbxconv.hxx')
-rw-r--r--basic/source/sbx/sbxconv.hxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/basic/source/sbx/sbxconv.hxx b/basic/source/sbx/sbxconv.hxx
index 34a9ba324b93..08fa296f2c8f 100644
--- a/basic/source/sbx/sbxconv.hxx
+++ b/basic/source/sbx/sbxconv.hxx
@@ -21,19 +21,6 @@
#define INCLUDED_BASIC_SOURCE_SBX_SBXCONV_HXX
#include "sbxdec.hxx"
-#if defined(ANDROID)
-namespace std
-{
-double lround(double d)
-{
- return d + ( d < 0 ? -0.5 : 0.5 );
-}
-double llround(double d)
-{
- return d + ( d < 0 ? -0.5 : 0.5 );
-}
-}
-#endif
class SbxArray;