Drop noop gcc version checks

Since #20413 the minimum required GCC version is 7.

Co-authored-by: practicalswift <practicalswift@users.noreply.github.com>
This commit is contained in:
Hennadii Stepanov
2020-11-25 14:25:56 +02:00
parent 1e9e4b68f3
commit 830ddf4139
3 changed files with 4 additions and 12 deletions

View File

@@ -14,7 +14,7 @@
#if __has_builtin(__builtin_add_overflow)
#define HAVE_BUILTIN_ADD_OVERFLOW
#endif
#elif defined(__GNUC__) && (__GNUC__ >= 5)
#elif defined(__GNUC__)
#define HAVE_BUILTIN_ADD_OVERFLOW
#endif