diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-09-17 00:57:04 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-10-27 13:59:07 +0100 |
commit | df3682c2981f9212743e84abc6c75f937011cc28 (patch) | |
tree | 8a4a17f0c0e38c92fc53a3ecc28de11b497aac2e /sc | |
parent | d6e2d2430db084b8c2293d0135d8035a6a8b71c5 (diff) |
Remove inline specifier for functions defined in class
Change-Id: Ia0fcd51c5c1cfaff86aeaab2919addcce6621322
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/csvsplits.hxx | 4 |
1 files 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: |