mirror of
https://github.com/upx/upx
synced 2025-09-28 19:06:07 +08:00
Cleanups.
committer: mfx <mfx> 1042565088 +0000
This commit is contained in:
parent
d771f219f0
commit
b8c34036a5
|
@ -42,6 +42,10 @@
|
|||
// direct screen access
|
||||
**************************************************************************/
|
||||
|
||||
#if defined(_MSC_VER) && (_MSC_VER < 1200)
|
||||
# pragma warning(disable: 4201) // nonstandard extension used: nameless struct/union
|
||||
#endif
|
||||
|
||||
#include <windows.h>
|
||||
#if defined(HAVE_CONIO_H)
|
||||
# include <conio.h>
|
||||
|
|
|
@ -98,14 +98,14 @@ class bad_alloc { };
|
|||
# define __USE_MALLOC
|
||||
# define enable upx_stl_enable
|
||||
#endif
|
||||
#ifdef _MSC_VER
|
||||
#if defined(_MSC_VER)
|
||||
# pragma warning(push)
|
||||
# pragma warning(disable: 4018 4100 4663)
|
||||
#endif
|
||||
|
||||
#include <vector>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#if defined(_MSC_VER)
|
||||
# pragma warning(pop)
|
||||
#endif
|
||||
|
||||
|
|
|
@ -152,7 +152,6 @@
|
|||
# define SIGTYPEENTRY __cdecl
|
||||
# define HAVE_IO_H 1
|
||||
# define HAVE_MALLOC_H 1
|
||||
# define HAVE_UNISTD_H 1
|
||||
# define HAVE_UTIME_H 1
|
||||
# define HAVE_MODE_T 1
|
||||
# define HAVE_CHMOD 1
|
||||
|
|
Loading…
Reference in New Issue
Block a user