X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/51496782d13dd083fd20f9db31418b9231f2e5c3..ecd20d4a916884895dcd8873a9f1156e34f4ac89:/src/common/longlong.cpp diff --git a/src/common/longlong.cpp b/src/common/longlong.cpp index 63db358fff..80fc379374 100644 --- a/src/common/longlong.cpp +++ b/src/common/longlong.cpp @@ -1150,11 +1150,13 @@ void *wxULongLongWx::asArray(void) const #if wxUSE_STD_IOSTREAM // input/output +WXDLLIMPEXP_BASE wxSTD ostream& operator<< (wxSTD ostream& o, const wxLongLong& ll) { return o << ll.ToString(); } +WXDLLIMPEXP_BASE wxSTD ostream& operator<< (wxSTD ostream& o, const wxULongLong& ll) { return o << ll.ToString(); @@ -1162,12 +1164,12 @@ wxSTD ostream& operator<< (wxSTD ostream& o, const wxULongLong& ll) #endif // wxUSE_STD_IOSTREAM -wxString& operator<< (wxString& s, const wxLongLong& ll) +WXDLLIMPEXP_BASE wxString& operator<< (wxString& s, const wxLongLong& ll) { return s << ll.ToString(); } -wxString& operator<< (wxString& s, const wxULongLong& ll) +WXDLLIMPEXP_BASE wxString& operator<< (wxString& s, const wxULongLong& ll) { return s << ll.ToString(); }