X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d0ee33f5c6908b4ac5e1364381f0ef00942e3936..c493691d6249650c0366fd9aaaca8572e3ff3edd:/include/wx/longlong.h diff --git a/include/wx/longlong.h b/include/wx/longlong.h index 3adf4335b8..e8c399960b 100644 --- a/include/wx/longlong.h +++ b/include/wx/longlong.h @@ -164,6 +164,11 @@ public: return (long)m_ll; } +#if wxABI_VERSION >= 20602 + // convert to double + double ToDouble() const { return m_ll; } +#endif // ABI >= 2.6.2 + // don't provide implicit conversion to wxLongLong_t or we will have an // ambiguity for all arithmetic operations //operator wxLongLong_t() const { return m_ll; } @@ -590,6 +595,11 @@ public: return (long)m_lo; } +#if wxABI_VERSION >= 20602 + // convert to double + double ToDouble() const; +#endif // ABI >= 2.6.2 + // operations // addition wxLongLongWx operator+(const wxLongLongWx& ll) const;