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:
@@ -70,7 +70,7 @@ ostream& operator<< (ostream& o, const wxLongLongNative& ll)
|
|||||||
|
|
||||||
for (int i = 0; i < 64; i++)
|
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;
|
return o << result;
|
||||||
|
Reference in New Issue
Block a user