blob: f7af8c3a1aef923c87ee7bc15f4352f3f127ea03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
From 818defbb8ba039fdcd043ae843d9391b84191d55 Mon Sep 17 00:00:00 2001
From: Martchus <martchus@gmx.net>
Date: Fri, 23 May 2025 18:01:59 +0200
Subject: [PATCH 4/4] Fix missing include
---
src/qml/compiler/qv4compiler.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/qml/compiler/qv4compiler.cpp b/src/qml/compiler/qv4compiler.cpp
index 18e19cf01c..e71c86e9c6 100644
--- a/src/qml/compiler/qv4compiler.cpp
+++ b/src/qml/compiler/qv4compiler.cpp
@@ -48,6 +48,8 @@
#include <private/qqmlirbuilder_p.h>
#include <QCryptographicHash>
+#include <cstdint>
+
// Efficient implementation that takes advantage of powers of two.
static inline size_t roundUpToMultipleOf(size_t divisor, size_t x)
{
--
2.51.2
|