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
This commit is contained in:
Vadim Zeitlin
2005-01-18 12:30:19 +00:00
parent f5d9cc735c
commit 7fcdf88f88

View 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;