From: Vadim Zeitlin Date: Mon, 20 Oct 2003 17:43:08 +0000 (+0000) Subject: Open Watcom doesn't like typename, use class (patch 826812) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/26dddf6c3455f95bef2dcb2a0a514fa0558b50ab?ds=inline 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 --- diff --git a/include/wx/defs.h b/include/wx/defs.h index 06cc68c766..d4028a9f32 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -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 +template inline void wxUnusedVar(const T& WXUNUSED(t)) { } // ----------------------------------------------------------------------------