diff options
Diffstat (limited to 'idl')
-rw-r--r-- | idl/inc/basobj.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/idl/inc/basobj.hxx b/idl/inc/basobj.hxx index 12a1dc769c19..d6adb8d809ad 100644 --- a/idl/inc/basobj.hxx +++ b/idl/inc/basobj.hxx @@ -73,13 +73,12 @@ public: p->AddFirstRef(); } - T pop_back() + void pop_back() { T p = base_t::back(); base_t::pop_back(); if( p ) p->ReleaseRef(); - return p; } }; |