Kaydet (Commit) 891e9807 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Work around MSC "'override' cannot be used with 'inline'" bug

Change-Id: Ib84508c7617610ff81d3ec29bc5130048e4cecd3
üst b3b84348
......@@ -37,12 +37,12 @@ public:
/** Create a copy of the called enumeration object.
*/
SAL_WNODEPRECATED_DECLARATIONS_PUSH
virtual inline ::std::auto_ptr<Enumeration<SharedPageDescriptor> > Clone (void) SAL_OVERRIDE;
virtual ::std::auto_ptr<Enumeration<SharedPageDescriptor> > Clone (void) SAL_OVERRIDE;
SAL_WNODEPRECATED_DECLARATIONS_POP
virtual inline bool HasMoreElements (void) const SAL_OVERRIDE;
virtual inline SharedPageDescriptor GetNextElement (void) SAL_OVERRIDE;
virtual inline void Rewind (void) SAL_OVERRIDE;
virtual bool HasMoreElements (void) const SAL_OVERRIDE;
virtual SharedPageDescriptor GetNextElement (void) SAL_OVERRIDE;
virtual void Rewind (void) SAL_OVERRIDE;
private:
const SlideSorterModel& mrModel;
......
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