From: Vadim Zeitlin Date: Wed, 14 Jul 2010 23:06:20 +0000 (+0000) Subject: Remove dllexport declaration from a nested struct. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c5895661ca796e5ffb2014d0a4327f26880c350b Remove dllexport declaration from a nested struct. Try a blind fix for VC6 linking problems in DLL build related to wxFileTypeInfo ctor. This is unlikely to fix it but DLL-exporting a nested struct which, moreover, has only inline methods, seems unnecessary and it just might help too. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64971 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/mimetype.h b/include/wx/mimetype.h index e47eda9a3c..3f8c039bf5 100644 --- a/include/wx/mimetype.h +++ b/include/wx/mimetype.h @@ -137,7 +137,7 @@ public: // NB: This is a helper to get implicit conversion of variadic ctor's // fixed arguments into something that can be passed to VarArgInit(). // Do not use, it's used by the ctor only. - struct WXDLLIMPEXP_BASE CtorString + struct CtorString { CtorString(const char *str) : m_str(str) {} CtorString(const wchar_t *str) : m_str(str) {}