Corrected VC++ compilo (not yet tested)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40658 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
25f70bc4a1
commit
95f090310c
@ -411,7 +411,11 @@ public:
|
||||
}
|
||||
|
||||
// convert to double
|
||||
#ifdef _MSC_VER
|
||||
double ToDouble() const { return wx_truncate_cast(double, (__int64) m_ll); }
|
||||
#else
|
||||
double ToDouble() const { return wx_truncate_cast(double, m_ll); }
|
||||
#endif
|
||||
|
||||
// operations
|
||||
// addition
|
||||
|
Loading…
Reference in New Issue
Block a user