From 28f0592cd9b1cbf0cc8f58c37bbe788629fac373 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Tue, 29 Jan 2008 11:26:30 +0000 Subject: [PATCH] compilation fix for VC6, it doesn't support partial template specialization git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51443 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/meta/movable.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/wx/meta/movable.h b/include/wx/meta/movable.h index ada53540e9..cb207abc39 100644 --- a/include/wx/meta/movable.h +++ b/include/wx/meta/movable.h @@ -53,6 +53,11 @@ WX_DECLARE_TYPE_MOVABLE(wxLongLong_t) WX_DECLARE_TYPE_MOVABLE(wxULongLong_t) #endif +// 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 +#ifndef __VISUALC6__ + // pointers are movable: template struct wxIsMovable @@ -65,6 +70,8 @@ struct wxIsMovable enum { value = true }; }; +#endif // !__VISUALC6__ + // Our implementation of wxString is written in such way that it's safe to move // it around. OTOH, we don't know anything about std::string. // (NB: we don't put this into string.h and choose to include wx/string.h from -- 2.45.2