X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8b81872f2efe2948592096f155729ec4ba5640a2..6842d18650b487249b4ae29d0d7e17231b24cde8:/src/common/longlong.cpp diff --git a/src/common/longlong.cpp b/src/common/longlong.cpp index 4303386f7c..fd0c992c3f 100644 --- a/src/common/longlong.cpp +++ b/src/common/longlong.cpp @@ -25,6 +25,8 @@ #pragma hdrstop #endif +#if wxUSE_LONGLONG + #include "wx/longlong.h" #include // for memset() @@ -56,7 +58,7 @@ void *wxLongLongNative::asArray(void) const } // input/output -std::ostream& operator<< (std::ostream& o, const wxLongLongNative& ll) +ostream& operator<< (ostream& o, const wxLongLongNative& ll) { char result[65]; @@ -449,7 +451,7 @@ void *wxLongLongWx::asArray(void) const // input/output -std::ostream& operator<< (std::ostream& o, const wxLongLongWx& ll) +ostream& operator<< (ostream& o, const wxLongLongWx& ll) { char result[65]; @@ -465,5 +467,7 @@ std::ostream& operator<< (std::ostream& o, const wxLongLongWx& ll) return o << result; } -#endif wxUSE_LONGLONG_WX +#endif + // wxUSE_LONGLONG_NATIVE +#endif // wxUSE_LONGLONG