MSW compilation fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2404 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -107,10 +107,10 @@ public:
|
||||
// accessors
|
||||
// get high part
|
||||
long GetHi() const
|
||||
{ return (long)((m_ll & 0xFFFFFFFF00000000ll) >> 32); }
|
||||
{ return (long)((m_ll & 0xFFFFFFFF00000000l) >> 32); }
|
||||
// get low part
|
||||
unsigned long GetLo() const
|
||||
{ return (unsigned long) (m_ll & 0x00000000FFFFFFFFll); }
|
||||
{ return (unsigned long) (m_ll & 0x00000000FFFFFFFFl); }
|
||||
|
||||
// convert to native long long
|
||||
wxLongLong_t GetValue() const { return m_ll; }
|
||||
@@ -222,7 +222,7 @@ public:
|
||||
void *asArray() const;
|
||||
|
||||
// input/output
|
||||
friend std::ostream& operator<<(ostream&, const wxLongLongNative&);
|
||||
friend ostream& operator<<(ostream&, const wxLongLongNative&);
|
||||
|
||||
private:
|
||||
wxLongLong_t m_ll;
|
||||
@@ -324,7 +324,7 @@ public:
|
||||
wxLongLongWx& remainder) const;
|
||||
|
||||
// input/output
|
||||
friend ostream& operator<<(std::ostream&, const wxLongLongWx&);
|
||||
friend ostream& operator<<(ostream&, const wxLongLongWx&);
|
||||
|
||||
private:
|
||||
// long is at least 32 bits, so represent our 64bit number as 2 longs
|
||||
|
Reference in New Issue
Block a user