X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e7aaf2dedd0b9b8d2ab1a63ed0ba4f64abe1301b..2c01d33555e3125057f4575ca7d0d2aba93f421f:/include/wx/longlong.h diff --git a/include/wx/longlong.h b/include/wx/longlong.h index 27cf9e8d1a..a0f98934e0 100644 --- a/include/wx/longlong.h +++ b/include/wx/longlong.h @@ -13,10 +13,6 @@ #ifndef _WX_LONGLONG_H #define _WX_LONGLONG_H -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "longlong.h" -#endif - #include "wx/defs.h" #include "wx/string.h" @@ -143,10 +139,10 @@ public: // accessors // get high part long GetHi() const - { return (long)(m_ll >> 32); } + { return wx_truncate_cast(long, m_ll >> 32); } // get low part unsigned long GetLo() const - { return (unsigned long)m_ll; } + { return wx_truncate_cast(unsigned long, m_ll); } // get absolute value wxLongLongNative Abs() const { return wxLongLongNative(*this).Abs(); } @@ -161,11 +157,11 @@ public: wxASSERT_MSG( (m_ll >= LONG_MIN) && (m_ll <= LONG_MAX), _T("wxLongLong to long conversion loss of precision") ); - return (long)m_ll; + return wx_truncate_cast(long, m_ll); } // convert to double - double ToDouble() const { return m_ll; } + double ToDouble() const { return wx_truncate_cast(double, m_ll); } // don't provide implicit conversion to wxLongLong_t or we will have an // ambiguity for all arithmetic operations @@ -346,10 +342,10 @@ public: // accessors // get high part unsigned long GetHi() const - { return (unsigned long)(m_ll >> 32); } + { return wx_truncate_cast(unsigned long, m_ll >> 32); } // get low part unsigned long GetLo() const - { return (unsigned long)m_ll; } + { return wx_truncate_cast(unsigned long, m_ll); } // convert to native ulong long wxULongLong_t GetValue() const { return m_ll; } @@ -360,7 +356,7 @@ public: wxASSERT_MSG( m_ll <= LONG_MAX, _T("wxULongLong to long conversion loss of precision") ); - return (unsigned long)m_ll; + return wx_truncate_cast(unsigned long, m_ll); } // operations