From a1d48124ead5fc9c241fb87f9fd9d86699dbae71 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sat, 13 Dec 2003 10:43:25 +0000 Subject: [PATCH] Added warning suppression git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24812 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/dynarray.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/dynarray.cpp b/src/common/dynarray.cpp index 63a6dc76cf..ef5203fc9f 100644 --- a/src/common/dynarray.cpp +++ b/src/common/dynarray.cpp @@ -432,7 +432,7 @@ _WX_DEFINE_BASEARRAY(double, wxBaseArrayDouble) _WX_DEFINE_BASEARRAY(wxString, wxBaseArrayStringBase); -int wxArrayString::Index(const wxChar* sz, bool bCase, bool bFromEnd) const +int wxArrayString::Index(const wxChar* sz, bool bCase, bool WXUNUSED(bFromEnd)) const { wxArrayString::const_iterator it; @@ -458,7 +458,7 @@ private: fnc m_f; }; -int wxSortedArrayString::Index(const wxChar* sz, bool bCase, bool bFromEnd) const +int wxSortedArrayString::Index(const wxChar* sz, bool bCase, bool WXUNUSED(bFromEnd)) const { wxSortedArrayString::const_iterator it; -- 2.45.2