Merge #7863 'mingw64: fix gcc warnings'

This commit is contained in:
Justin M. Keyes
2018-01-20 17:18:32 +01:00
17 changed files with 114 additions and 62 deletions

View File

@@ -148,6 +148,10 @@
/// zero in those cases (-Wdiv-by-zero in GCC).
#define ARRAY_SIZE(arr) ((sizeof(arr)/sizeof((arr)[0])) / ((size_t)(!(sizeof(arr) % sizeof((arr)[0])))))
// Duplicated in os/win_defs.h to avoid include-order sensitivity.
#if defined(WIN32) && defined(RGB)
# undef RGB
#endif
#define RGB(r, g, b) ((r << 16) | (g << 8) | b)
#define STR_(x) #x
@@ -183,4 +187,19 @@
/// @return ((Type *)obj).
#define STRUCT_CAST(Type, obj) ((Type *)(obj))
// Type of uv_buf_t.len is platform-dependent.
// Related: https://github.com/libuv/libuv/pull/1236
#if defined(WIN32)
# define UV_BUF_LEN(x) (ULONG)(x)
#else
# define UV_BUF_LEN(x) (x)
#endif
// Type of read()/write() `count` param is platform-dependent.
#if defined(WIN32)
# define IO_COUNT(x) (unsigned)(x)
#else
# define IO_COUNT(x) (x)
#endif
#endif // NVIM_MACROS_H