From d2b23b67301bd2d286366d4326a21da3132558fa Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 25 Apr 2007 01:38:11 +0000 Subject: [PATCH] don't declare inline function with dllexport declaration, this provokes mingw32 warnings and is unnecessary anyhow git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45637 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/wxcrt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/wxcrt.h b/include/wx/wxcrt.h index bcbbf3027a..060f05dbbf 100644 --- a/include/wx/wxcrt.h +++ b/include/wx/wxcrt.h @@ -29,7 +29,7 @@ // function used to update the flag: extern WXDLLIMPEXP_BASE void wxUpdateLocaleIsUtf8(); #else // !wxUSE_UNICODE_UTF8 - inline WXDLLIMPEXP_BASE void wxUpdateLocaleIsUtf8() {} + inline void wxUpdateLocaleIsUtf8() {} #endif // wxUSE_UNICODE_UTF8/!wxUSE_UNICODE_UTF8 #endif // __cplusplus -- 2.45.2