From 5979baa0e285f819850e8dfeaf1b8170229c70af Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 2 Jun 2014 18:14:22 +0000 Subject: [PATCH] Compilation fix for wxMSW 64 bit build with icc. This compiler doesn't want to narrow INVALID_HANDLE_VALUE to int, so use wxUIntPtr instead. See #16233. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76659 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/msw/private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/msw/private.h b/include/wx/msw/private.h index dabb41107a..6cd7fc0328 100644 --- a/include/wx/msw/private.h +++ b/include/wx/msw/private.h @@ -185,7 +185,7 @@ extern LONG APIENTRY _EXPORT #endif // close the handle in the class dtor -template +template class AutoHANDLE { public: