From bd3ff6928e83f764fe183f09eccc67b812795a3e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 28 Aug 2014 11:35:34 +0000 Subject: [PATCH] Fix build with wxUSE_STD_STRIN == 0. Remove a leftover occurrence of wxDEFINE_TEMPLATE_BOOL_VALUE(), this should have been done in r76532. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77490 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 86d4c35985..6e6aac9751 100644 --- a/include/wx/meta/movable.h +++ b/include/wx/meta/movable.h @@ -28,7 +28,7 @@ struct wxIsMovable #define WX_DECLARE_TYPE_MOVABLE(type) \ template<> struct wxIsMovable \ { \ - wxDEFINE_TEMPLATE_BOOL_VALUE(true); \ + static const bool value = true; \ }; // Our implementation of wxString is written in such way that it's safe to move