git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2946 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guilhem Lavaux
1999-07-02 17:49:59 +00:00
parent e03bcf0d40
commit 44719c473b

View File

@@ -96,7 +96,7 @@ void ConvertToIeeeExtended(double num, unsigned char *bytes)
bytes[6] = (unsigned char) ((loMant >> 24) & 0xff);
bytes[7] = (unsigned char) ((loMant >> 16) & 0xff);
bytes[8] = (unsigned char) ((loMant >> 8) & 0xff);
bytes[9] = (unsigned char) (loMant & 0xff;
bytes[9] = (unsigned char) (loMant & 0xff);
#ifdef _MSC_VER
#pragma warning(default: 4244)