Kaydet (Commit) df3682c2 authored tarafından Matteo Casalin's avatar Matteo Casalin

Remove inline specifier for functions defined in class

Change-Id: Ia0fcd51c5c1cfaff86aeaab2919addcce6621322
üst d6e2d243
...@@ -67,12 +67,12 @@ public: ...@@ -67,12 +67,12 @@ public:
sal_uInt32 UpperBound( sal_Int32 nPos ) const; sal_uInt32 UpperBound( sal_Int32 nPos ) const;
/** Returns the number of splits. */ /** Returns the number of splits. */
inline sal_uInt32 Count() const sal_uInt32 Count() const
{ return maVec.size(); } { return maVec.size(); }
/** Returns the position of the specified split. */ /** Returns the position of the specified split. */
sal_Int32 GetPos( sal_uInt32 nIndex ) const; sal_Int32 GetPos( sal_uInt32 nIndex ) const;
/** Returns the position of the specified split. */ /** 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 ); } { return GetPos( nIndex ); }
private: private:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment