]> git.saurik.com Git - wxWidgets.git/commitdiff
added WXDLLIMPEXP_BASE for operator<<() functions (blind fix for bug 1104372)
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 18 Jan 2005 12:30:19 +0000 (12:30 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 18 Jan 2005 12:30:19 +0000 (12:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31445 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/longlong.h

index 1a006e757c5419a6aa5357650d2e218689265080..d41c02ad1a2e50a342c93bf3634631ff13d8ea46 100644 (file)
@@ -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;