From 7fcdf88f88a44faacadc5f8b03a8bda28694ea08 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 18 Jan 2005 12:30:19 +0000 Subject: [PATCH] added WXDLLIMPEXP_BASE for operator<<() functions (blind fix for bug 1104372) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31445 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/longlong.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/wx/longlong.h b/include/wx/longlong.h index 1a006e757c..d41c02ad1a 100644 --- a/include/wx/longlong.h +++ b/include/wx/longlong.h @@ -486,10 +486,12 @@ public: #if wxUSE_STD_IOSTREAM // input/output - friend wxSTD ostream& operator<<(wxSTD ostream&, const wxULongLongNative&); + friend WXDLLIMPEXP_BASE + wxSTD ostream& operator<<(wxSTD ostream&, const wxULongLongNative&); #endif - friend wxString& operator<<(wxString&, const wxULongLongNative&); + friend WXDLLIMPEXP_BASE + wxString& operator<<(wxString&, const wxULongLongNative&); private: unsigned wxLongLong_t m_ll; -- 2.47.2