summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/resourcemodel/Fraction.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/resourcemodel/Fraction.cxx b/writerfilter/source/resourcemodel/Fraction.cxx
index 762b9afed8e6..1f24bb3e5b51 100644
--- a/writerfilter/source/resourcemodel/Fraction.cxx
+++ b/writerfilter/source/resourcemodel/Fraction.cxx
@@ -24,7 +24,7 @@ namespace resourcemodel {
// Stein's binary GCD for non-negative integers
// https://en.wikipedia.org/wiki/Binary_GCD_algorithm
-sal_uInt32 gcd(sal_uInt32 a, sal_uInt32 b)
+static sal_uInt32 gcd(sal_uInt32 a, sal_uInt32 b)
{
if (a == 0 || b == 0)
return a | b;
@@ -63,7 +63,7 @@ sal_uInt32 gcd(sal_uInt32 a, sal_uInt32 b)
return a << nShift;
}
-sal_uInt32 lcm(sal_Int32 a, sal_Int32 b)
+static sal_uInt32 lcm(sal_Int32 a, sal_Int32 b)
{
return abs(a * b) / gcd(abs(a), abs(b));
}