compile fix for wxUSE_STD_IOSTREAM case
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6168 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
0068587be2
commit
ea968ccd07
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user