blind compilation fix for 64 bit systems after last commit
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37545 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -129,10 +129,12 @@ public:
|
|||||||
|
|
||||||
// assignment operators
|
// assignment operators
|
||||||
// from native 64 bit integer
|
// from native 64 bit integer
|
||||||
|
#ifndef wxLongLongIsLong
|
||||||
wxLongLongNative& operator=(wxLongLong_t ll)
|
wxLongLongNative& operator=(wxLongLong_t ll)
|
||||||
{ m_ll = ll; return *this; }
|
{ m_ll = ll; return *this; }
|
||||||
wxLongLongNative& operator=(wxULongLong_t ll)
|
wxLongLongNative& operator=(wxULongLong_t ll)
|
||||||
{ m_ll = ll; return *this; }
|
{ m_ll = ll; return *this; }
|
||||||
|
#endif // !wxLongLongNative
|
||||||
wxLongLongNative& operator=(const wxULongLongNative &ll);
|
wxLongLongNative& operator=(const wxULongLongNative &ll);
|
||||||
wxLongLongNative& operator=(int l)
|
wxLongLongNative& operator=(int l)
|
||||||
{ m_ll = l; return *this; }
|
{ m_ll = l; return *this; }
|
||||||
@@ -363,10 +365,12 @@ public:
|
|||||||
|
|
||||||
// assignment operators
|
// assignment operators
|
||||||
// from native 64 bit integer
|
// from native 64 bit integer
|
||||||
|
#ifndef wxLongLongIsLong
|
||||||
wxULongLongNative& operator=(wxULongLong_t ll)
|
wxULongLongNative& operator=(wxULongLong_t ll)
|
||||||
{ m_ll = ll; return *this; }
|
{ m_ll = ll; return *this; }
|
||||||
wxULongLongNative& operator=(wxLongLong_t ll)
|
wxULongLongNative& operator=(wxLongLong_t ll)
|
||||||
{ m_ll = ll; return *this; }
|
{ m_ll = ll; return *this; }
|
||||||
|
#endif // !wxLongLongNative
|
||||||
wxULongLongNative& operator=(int l)
|
wxULongLongNative& operator=(int l)
|
||||||
{ m_ll = l; return *this; }
|
{ m_ll = l; return *this; }
|
||||||
wxULongLongNative& operator=(long l)
|
wxULongLongNative& operator=(long l)
|
||||||
|
Reference in New Issue
Block a user