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:
@@ -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)\
|
||||
{\
|
||||
|
Reference in New Issue
Block a user