24 lines
645 B
Diff
24 lines
645 B
Diff
From: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
|
|
Date: Sat, 14 May 2022 17:41:00 +0800
|
|
Subject: include <limits> to fix GCC 11 build
|
|
|
|
Origin: upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=813a928c7c3cf986
|
|
Last-Update: 2022-03-03
|
|
---
|
|
src/corelib/text/qbytearraymatcher.h | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/src/corelib/text/qbytearraymatcher.h b/src/corelib/text/qbytearraymatcher.h
|
|
index 0eedfc1..f5f9bef 100644
|
|
--- a/src/corelib/text/qbytearraymatcher.h
|
|
+++ b/src/corelib/text/qbytearraymatcher.h
|
|
@@ -42,6 +42,8 @@
|
|
|
|
#include <QtCore/qbytearray.h>
|
|
|
|
+#include <limits>
|
|
+
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|