X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/55dfa8d3eadbcad32bb7a779f10286dd49b60ce1..1971d23c57b3c582f32d05704914ad902ec76fa5:/src/common/longlong.cpp diff --git a/src/common/longlong.cpp b/src/common/longlong.cpp index d85b5420fb..319f92a40b 100644 --- a/src/common/longlong.cpp +++ b/src/common/longlong.cpp @@ -60,7 +60,7 @@ void *wxLongLongNative::asArray() const #if wxUSE_STD_IOSTREAM // input/output -ostream& operator<< (ostream& o, const wxLongLongNative& ll) +wxSTD ostream& operator<< (wxSTD ostream& o, const wxLongLongNative& ll) { char result[65]; @@ -70,7 +70,7 @@ ostream& operator<< (ostream& o, const wxLongLongNative& ll) for (int i = 0; i < 64; i++) { - result[63 - i] = '0' + (char) ((ll.m_ll >> i) & 1); + result[63 - i] = '0' + (char) ((ll.GetValue() >> i) & 1); } return o << result; @@ -629,7 +629,7 @@ void *wxLongLongWx::asArray(void) const #if wxUSE_STD_IOSTREAM // input/output -ostream& operator<< (ostream& o, const wxLongLongWx& ll) +wxSTD ostream& operator<< (wxSTD ostream& o, const wxLongLongWx& ll) { char result[65];