basic/source/sbx/sbxconv.hxx | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit 62d7d5b8cff59eb554ce90342be923b4815d18fa
Author: Julien Nabet <[email protected]>
Date: Sun Nov 6 12:47:54 2016 +0100
Fix Android build (llround)
Change-Id: I4f412f36f690bb2857ffa8c6188a9a4ce3994730
Reviewed-on: https://gerrit.libreoffice.org/30607
Reviewed-by: Julien Nabet <[email protected]>
Tested-by: Julien Nabet <[email protected]>
diff --git a/basic/source/sbx/sbxconv.hxx b/basic/source/sbx/sbxconv.hxx
index 39db080..34a9ba3 100644
--- a/basic/source/sbx/sbxconv.hxx
+++ b/basic/source/sbx/sbxconv.hxx
@@ -28,6 +28,10 @@ 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
_______________________________________________
Libreoffice-commits mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits