[Libreoffice-commits] core.git: basic/source

Julien Nabet serval2412 at yahoo.fr
Sun Nov 6 11:58:50 UTC 2016


 basic/source/sbx/sbxconv.hxx |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit 62d7d5b8cff59eb554ce90342be923b4815d18fa
Author: Julien Nabet <serval2412 at yahoo.fr>
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 <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

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
 


More information about the Libreoffice-commits mailing list