1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-10 23:46:34 +00:00

Added a pragma to supress the lgc.c(988): warning C4146: unary minus operator applied to

unsigned type, result still unsigned. We don't want to fix liblua
This commit is contained in:
sean
2012-06-21 03:55:24 +00:00
parent 896bcc520b
commit 0c1c89a022

View File

@@ -156,6 +156,7 @@ typedef signed __int64 int64_t;
#define _CRT_SECURE_NO_WARNINGS 1
#endif
#pragma warning(disable: 4996)
#pragma warning(disable: 4146)
#ifdef __GNUC__
#define bzero(addr, num) __builtin_memset (addr, '\0', num)