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:
Julian Smart 2006-08-18 15:27:30 +00:00
parent 25f70bc4a1
commit 95f090310c

View File

@ -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