From 7ca735413ac6496a3ed873f58c5ce54c9838d122 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Tue, 29 Jan 2008 19:50:34 +0000 Subject: [PATCH] corrected VC++ version check git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51450 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/meta/movable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/meta/movable.h b/include/wx/meta/movable.h index 7fc60d0bbf..5441bf586b 100644 --- a/include/wx/meta/movable.h +++ b/include/wx/meta/movable.h @@ -56,7 +56,7 @@ WX_DECLARE_TYPE_MOVABLE(wxULongLong_t) // Visual C++ 6.0 can't compile partial template specializations and as this is // only an optimization, we can live with pointers not being recognized as // movable types under VC6 -#if !wxCHECK_VISUALC_VERSION(7) +#if !defined(__VISUALC__) || wxCHECK_VISUALC_VERSION(7) // pointers are movable: template -- 2.45.2