diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2016-11-06 12:47:54 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2016-11-06 11:58:30 +0000 |
commit | 62d7d5b8cff59eb554ce90342be923b4815d18fa (patch) | |
tree | 495d8b6f96314a91cc6b80fefd45316a117f0d87 /basic | |
parent | 703d00e335bf0d38b3019ec2ba095b27a5fdba2d (diff) |
Fix Android build (llround)
Change-Id: I4f412f36f690bb2857ffa8c6188a9a4ce3994730
Reviewed-on: https://gerrit.libreoffice.org/30607
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/sbx/sbxconv.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/basic/source/sbx/sbxconv.hxx b/basic/source/sbx/sbxconv.hxx index 39db08076044..34a9ba324b93 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 |