X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/84a19decccc823884c8cc037dbc8469d251d35a9..2d17a4e2f1da0da3671c888f23ec68facb5074ef:/src/common/extended.c?ds=sidebyside diff --git a/src/common/extended.c b/src/common/extended.c index 3bba986f4b..1dae07e953 100644 --- a/src/common/extended.c +++ b/src/common/extended.c @@ -82,10 +82,10 @@ void ConvertToIeeeExtended(double num, unsigned char *bytes) } } - // disable the warning about 'possible loss of data' + /* disable the warning about 'possible loss of data' */ #ifdef _MSC_VER #pragma warning(disable: 4244) - #endif // Visual C++ + #endif /* Visual C++ */ bytes[0] = expon >> 8; bytes[1] = expon; @@ -100,7 +100,7 @@ void ConvertToIeeeExtended(double num, unsigned char *bytes) #ifdef _MSC_VER #pragma warning(default: 4244) - #endif // Visual C++ + #endif /* Visual C++ */ } /*