mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
ci/skqp: Add missing include to fix compilation errors on Debian 13
Include <cstdint> to fix these compilation errors:
../../src/sksl/SkSLString.h:124:18: error: unknown type name 'uint32_t'
124 | String to_string(uint32_t value);
| ^
../../src/sksl/SkSLString.h:128:18: error: unknown type name 'uint64_t'
128 | String to_string(uint64_t value);
| ^
Signed-off-by: Valentine Burley <valentine.burley@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35853>
This commit is contained in:
parent
1717845a65
commit
5c59ec4d85
1 changed files with 12 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
diff --git a/src/sksl/SkSLString.h b/src/sksl/SkSLString.h
|
||||
index b3e411e..257a1ed 100644
|
||||
--- a/src/sksl/SkSLString.h
|
||||
+++ b/src/sksl/SkSLString.h
|
||||
@@ -8,6 +8,7 @@
|
||||
#ifndef SKSL_STRING
|
||||
#define SKSL_STRING
|
||||
|
||||
+#include <cstdint>
|
||||
#include <cstring>
|
||||
|
||||
#define SKSL_USE_STD_STRING
|
||||
Loading…
Add table
Reference in a new issue