From 32aa5bda92dcd39e954275d10558761cbf01fbaa Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 20 Dec 2007 00:53:24 +0000 Subject: [PATCH] made deprecated erase() overload inline git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50843 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/vector.h b/include/wx/vector.h index 6fc0be174a..2c645a0107 100644 --- a/include/wx/vector.h +++ b/include/wx/vector.h @@ -207,7 +207,7 @@ private: #if WXWIN_COMPATIBILITY_2_8 template -typename wxVector::size_type wxVector::erase(size_type n) +inline typename wxVector::size_type wxVector::erase(size_type n) { erase(begin() + n); return n; -- 2.45.2