From: Vadim Zeitlin Date: Thu, 1 Jul 2004 11:43:01 +0000 (+0000) Subject: removed spurious semicolon X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/eeb9e3d08f224fe910d493e1003b0443dc14706e?ds=inline removed spurious semicolon git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28131 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/list.h b/include/wx/list.h index 6be233d821..dd16e615b5 100644 --- a/include/wx/list.h +++ b/include/wx/list.h @@ -166,7 +166,7 @@ enum wxKeyType return it; \ } \ public: \ - liT() {}; \ + liT() {} \ \ citer Append( elT e ) { push_back( e ); return GetLast(); } \ void Clear() { clear(); } \