Open Watcom doesn't like typename, use class (patch 826812)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24236 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-10-20 17:43:08 +00:00
parent 2c4c398782
commit 26dddf6c34

View File

@@ -457,7 +457,7 @@ typedef int wxWindowID;
// sometimes the value of a variable is *really* not used, to suppress the
// resulting warning you may pass it to this function
template <typename T>
template <class T>
inline void wxUnusedVar(const T& WXUNUSED(t)) { }
// ----------------------------------------------------------------------------