qt5base - add missing includes for newer gcc versions (limits.h)

With gcc11+ certain headers are not included by default anymore - see:
https://www.gnu.org/software/gcc/gcc-11/porting_to.html#header-dep-changes
This commit is contained in:
Mirko Vogt
2025-05-12 01:01:30 +00:00
parent 844452a0ff
commit 6244c3ab91

View File

@@ -0,0 +1,10 @@
--- ./src/corelib/text/qbytearraymatcher.h 2021-06-29 13:23:13.369547140 +0200
+++ ./src/corelib/text/qbytearraymatcher.h.new 2021-06-29 13:12:07.634947925 +0200
@@ -41,6 +41,7 @@
#define QBYTEARRAYMATCHER_H
#include <QtCore/qbytearray.h>
+#include <limits>
QT_BEGIN_NAMESPACE