git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51443
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
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<typename T>
struct wxIsMovable<T*>
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