From df3682c2981f9212743e84abc6c75f937011cc28 Mon Sep 17 00:00:00 2001 From: Matteo Casalin Date: Thu, 17 Sep 2015 00:57:04 +0200 Subject: Remove inline specifier for functions defined in class Change-Id: Ia0fcd51c5c1cfaff86aeaab2919addcce6621322 --- sc/source/ui/inc/csvsplits.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sc/source/ui/inc/csvsplits.hxx b/sc/source/ui/inc/csvsplits.hxx index a53be066543f..3a07f83b0b69 100644 --- a/sc/source/ui/inc/csvsplits.hxx +++ b/sc/source/ui/inc/csvsplits.hxx @@ -67,12 +67,12 @@ public: sal_uInt32 UpperBound( sal_Int32 nPos ) const; /** Returns the number of splits. */ - inline sal_uInt32 Count() const + sal_uInt32 Count() const { return maVec.size(); } /** Returns the position of the specified split. */ sal_Int32 GetPos( sal_uInt32 nIndex ) const; /** Returns the position of the specified split. */ - inline sal_Int32 operator[]( sal_uInt32 nIndex ) const + sal_Int32 operator[]( sal_uInt32 nIndex ) const { return GetPos( nIndex ); } private: -- cgit