summaryrefslogtreecommitdiff
path: root/i18npool/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-07 13:16:24 +0200
committerNoel Grandin <noel@peralex.com>2015-04-09 10:13:18 +0200
commit35163715ead39eece619a5790903c88fa4216ec6 (patch)
tree68f657e8f4137d234d1b6b32835e3ff540b4b01a /i18npool/source
parente68c699b7e7efdf3678b450124b9e08ee227ddb9 (diff)
loplugin:staticmethods
Change-Id: Ie348778ea666c24e95e048386547f301083a0017
Diffstat (limited to 'i18npool/source')
-rw-r--r--i18npool/source/search/levdis.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/i18npool/source/search/levdis.hxx b/i18npool/source/search/levdis.hxx
index 426e7228de5b..9530ab988405 100644
--- a/i18npool/source/search/levdis.hxx
+++ b/i18npool/source/search/levdis.hxx
@@ -142,11 +142,11 @@ class WLevDistance
bool bSplitCount; ///< if TRUE, Rep/Ins/Del are counted separately
void InitData( const sal_Unicode* cPattern );
- inline int Min3( int x, int y, int z ); ///< minimum value of 3 values
- int Mid3( int x, int y, int z ); ///< middle value of 3 values
- int Max3( int x, int y, int z ); ///< maximum value of 3 values
- int GCD( int a, int b ); ///< Greatest Common Divisor
- int LCM( int a, int b ); ///< Least Common Multiple
+ static inline int Min3( int x, int y, int z ); ///< minimum value of 3 values
+ static int Mid3( int x, int y, int z ); ///< middle value of 3 values
+ static int Max3( int x, int y, int z ); ///< maximum value of 3 values
+ static int GCD( int a, int b ); ///< Greatest Common Divisor
+ static int LCM( int a, int b ); ///< Least Common Multiple
public: