summaryrefslogtreecommitdiff
path: root/app-emulation/virtualbox/files/virtualbox-7.0.6-gcc-13.patch
blob: ed3a2d02fbc0178030141f8a85de270a55b10490 (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
26
27
28
Add a few missing includes.

Bug: https://bugs.gentoo.org/892852

--- a/src/libs/dxvk-native-1.9.2a/src/util/util_matrix.cpp
+++ b/src/libs/dxvk-native-1.9.2a/src/util/util_matrix.cpp
@@ -1,3 +1,4 @@
+#include <cstdint>
 #include "util_matrix.h"
 
 namespace dxvk {
@@ -229,4 +230,4 @@
     return os;
   }
 
-}
\ No newline at end of file
+}
--- a/src/libs/dxvk-native-1.9.2a/src/util/util_vector.h
+++ b/src/libs/dxvk-native-1.9.2a/src/util/util_vector.h
@@ -1,6 +1,7 @@
 #pragma once
 
 #include <iostream>
+#include <cstdint>
 
 #include "util_bit.h"
 #include "util_math.h"