Revert "Compile: Work around false positive on gcc >= 900"
This reverts commit d62e9d3c5b.
Reason for revert: The -Wstringop-overread option was introduced in
gcc 11. This fixes the build for gcc 9 and 10.
Change-Id: I96ab5f917d6200cb1681fe6236f1fd4630ef4f7d
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
bb10
parent
64449abe17
commit
d8b943849f
|
|
@ -66,7 +66,7 @@ class tst_QOffsetStringArray;
|
|||
QT_BEGIN_NAMESPACE
|
||||
|
||||
QT_WARNING_PUSH
|
||||
#if defined(Q_CC_GNU) && Q_CC_GNU >= 900
|
||||
#if defined(Q_CC_GNU) && Q_CC_GNU >= 1100
|
||||
// we usually don't overread, but GCC has a false positive
|
||||
QT_WARNING_DISABLE_GCC("-Wstringop-overread")
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue