don't use DLL export declaration with inline functions, it is ignored and just results in a warning from mingw32 3.4.5 cross-compiler
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46601 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
76bfdc9ad9
commit
76de6a6e20
@ -693,8 +693,8 @@ inline bool wxIsMainThread() { return wxThread::IsMain(); }
|
|||||||
#else // !wxUSE_THREADS
|
#else // !wxUSE_THREADS
|
||||||
|
|
||||||
// no thread support
|
// no thread support
|
||||||
inline void WXDLLIMPEXP_BASE wxMutexGuiEnter() { }
|
inline void wxMutexGuiEnter() { }
|
||||||
inline void WXDLLIMPEXP_BASE wxMutexGuiLeave() { }
|
inline void wxMutexGuiLeave() { }
|
||||||
|
|
||||||
// macros for entering/leaving critical sections which may be used without
|
// macros for entering/leaving critical sections which may be used without
|
||||||
// having to take them inside "#if wxUSE_THREADS"
|
// having to take them inside "#if wxUSE_THREADS"
|
||||||
|
Loading…
Reference in New Issue
Block a user