From: Václav Slavík Date: Mon, 6 Aug 2007 14:53:24 +0000 (+0000) Subject: WXIMPORT must specify default visibility too, otherwise things like typeinfo may... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5e3c3fc9b8160620d3b3eb3a2d0ed789d44ccbae WXIMPORT must specify default visibility too, otherwise things like typeinfo may break subtly git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47906 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/dlimpexp.h b/include/wx/dlimpexp.h index e2baeb9f04..9160ad84c7 100644 --- a/include/wx/dlimpexp.h +++ b/include/wx/dlimpexp.h @@ -53,7 +53,7 @@ # define WXIMPORT __declspec(dllimport) #elif defined(HAVE_VISIBILITY) # define WXEXPORT __attribute__ ((visibility("default"))) -# define WXIMPORT +# define WXIMPORT __attribute__ ((visibility("default"))) #endif /* for other platforms/compilers we don't anything */