Unused parameters warning fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28244 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-07-15 06:27:13 +00:00
parent f5dd1cf1eb
commit 9d6eda5f3d
3 changed files with 16 additions and 16 deletions

View File

@@ -186,7 +186,7 @@ protected:\
\
protected:\
\
inline void quick_sort(int low, int hi) \
inline void quick_sort(int WXUNUSED(low), int WXUNUSED(hi)) \
{\
}\
\
@@ -337,7 +337,7 @@ public:\
\
inline const_reference back() const { return (*(mpEnd-1)); }\
\
inline void reserve(size_type n) {}\
inline void reserve(size_type WXUNUSED(n)) {}\
\
inline void push_back(const value_type& x)\
{\
@@ -558,11 +558,11 @@ protected:\
\
protected:\
\
inline void quick_sort(int low, int hi) \
inline void quick_sort(int WXUNUSED(low), int WXUNUSED(hi)) \
{\
}\
\
inline void DestructRange( iterator first, iterator last )\
inline void DestructRange( iterator WXUNUSED(first), iterator WXUNUSED(last))\
{\
}\
\
@@ -702,7 +702,7 @@ public:\
\
inline const_reference back() const { return (*(mpEnd-1)); }\
\
inline void reserve(size_type n) {}\
inline void reserve(size_type WXUNUSED(n)) {}\
\
inline void push_back(const value_type& x)\
{\