Update to 7-Zip Version 21.02

This commit is contained in:
Tino Reichardt
2021-05-13 16:39:14 +02:00
parent 3724ecfedc
commit 48fa49f76c
620 changed files with 35032 additions and 10925 deletions

View File

@@ -40,4 +40,18 @@ you can change this h file or h files included in this file.
#define MY_ARRAY_NEW(p, T, size) p = new T[size];
#endif
#if (defined(__GNUC__) && (__GNUC__ >= 8))
#define MY_ATTR_NORETURN __attribute__((noreturn))
#elif (defined(__clang__) && (__clang_major__ >= 3))
#if __has_feature(cxx_attributes)
#define MY_ATTR_NORETURN [[noreturn]]
#else
#define MY_ATTR_NORETURN __attribute__ ((noreturn))
#endif
#elif (defined(_MSC_VER) && (_MSC_VER >= 1900))
#define MY_ATTR_NORETURN [[noreturn]]
#else
#define MY_ATTR_NORETURN
#endif
#endif