Blame SOURCES/0002-Add-missing-limits-include-to-fix-build-with-GCC-11.patch

50d94e
From 0eb5ff2e97713e12318c00bab9f3605abb8592c2 Mon Sep 17 00:00:00 2001
b602f4
From: Antonio Rojas <arojas@archlinux.org>
b602f4
Date: Sun, 23 May 2021 14:32:46 +0200
50d94e
Subject: [PATCH 02/20] Add missing limits include to fix build with GCC 11
b602f4
b602f4
This is not required for Qt 6, since it is indirectly pulled via
b602f4
qanystrigview.h, but it is for Qt 5 (where qanystrigview does
b602f4
not exist) and, in any case, it is good to declare all used headers
b602f4
and not rely on them being implicitly pulled.
b602f4
b602f4
Pick-to: 6.1 5.15
b602f4
Change-Id: I97606ea493e723006759608b7d4c4f00632f340c
b602f4
Reviewed-by: Albert Astals Cid <albert.astals.cid@kdab.com>
b602f4
(cherry picked from commit 367293b18ab0d0a0432c1c8ce445fee052e5eee5)
b602f4
---
b602f4
 src/qmldebug/qqmlprofilerevent_p.h | 1 +
b602f4
 1 file changed, 1 insertion(+)
b602f4
b602f4
diff --git a/src/qmldebug/qqmlprofilerevent_p.h b/src/qmldebug/qqmlprofilerevent_p.h
b602f4
index a7e37d1964..01b2f58f16 100644
b602f4
--- a/src/qmldebug/qqmlprofilerevent_p.h
b602f4
+++ b/src/qmldebug/qqmlprofilerevent_p.h
b602f4
@@ -48,6 +48,7 @@
b602f4
 #include <QtCore/qmetatype.h>
b602f4
 
b602f4
 #include <initializer_list>
b602f4
+#include <limits>
b602f4
 #include <type_traits>
b602f4
 
b602f4
 //
b602f4
-- 
50d94e
2.35.1
b602f4