mirror of
https://github.com/SDL-Hercules-390/hyperion.git
synced 2026-04-21 03:12:58 +02:00
fix for warning C4244 ..... possible loss of data under MSVC
This commit is contained in:
@@ -19,6 +19,13 @@
|
||||
|
||||
#if !defined(DECNUMBER)
|
||||
#define DECNUMBER
|
||||
|
||||
#if defined( _MSVC_ )
|
||||
/* disable some MSVC compiler warnings */
|
||||
/* for 64bits builds under WINDOWS 7 */
|
||||
#pragma warning( disable: 4244 ) // "conversion from 'x' to 'y', possible loss of data"
|
||||
#endif
|
||||
|
||||
#define DECNAME "decNumber" /* Short name */
|
||||
#define DECFULLNAME "Decimal Number Module" /* Verbose name */
|
||||
#define DECAUTHOR "Mike Cowlishaw" /* Who to blame */
|
||||
|
||||
Reference in New Issue
Block a user