1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-21 16:02:15 +03:00

Suppress another case of MSVC warning 4146.

This commit is contained in:
Noah Misch
2019-02-16 15:28:27 -08:00
parent 04a87ae262
commit faee6fae6d

View File

@ -17,6 +17,7 @@
* - remove includes covered by c.h * - remove includes covered by c.h
* - rename DEBUG to IMATH_DEBUG * - rename DEBUG to IMATH_DEBUG
* - replace stdint.h usage with c.h equivalents * - replace stdint.h usage with c.h equivalents
* - suppress MSVC warning 4146
* *
* 2. Download a newer imath.c and imath.h. Transform them like in step 1. * 2. Download a newer imath.c and imath.h. Transform them like in step 1.
* Apply to these files the diff you saved in step 1. Look for new lines * Apply to these files the diff you saved in step 1. Look for new lines
@ -2359,7 +2360,14 @@ s_ucmp(mp_int a, mp_int b)
static int static int
s_vcmp(mp_int a, mp_small v) s_vcmp(mp_int a, mp_small v)
{ {
#if _MSC_VER
#pragma warning(push)
#pragma warning(disable: 4146)
#endif
mp_usmall uv = (v < 0) ? -(mp_usmall) v : (mp_usmall) v; mp_usmall uv = (v < 0) ? -(mp_usmall) v : (mp_usmall) v;
#if _MSC_VER
#pragma warning(pop)
#endif
return s_uvcmp(a, uv); return s_uvcmp(a, uv);
} }