mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Add missing cstdint includes for GCC 15
(cherry picked from commit 1823460787)
This commit is contained in:
parent
01b7292495
commit
9ca218370b
4 changed files with 26 additions and 0 deletions
1
thirdparty/glslang/SPIRV/SpvBuilder.h
vendored
1
thirdparty/glslang/SPIRV/SpvBuilder.h
vendored
|
|
@ -56,6 +56,7 @@ namespace spv {
|
|||
}
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstdint>
|
||||
#include <map>
|
||||
#include <memory>
|
||||
#include <set>
|
||||
|
|
|
|||
12
thirdparty/glslang/patches/fix-build-gcc15.patch
vendored
Normal file
12
thirdparty/glslang/patches/fix-build-gcc15.patch
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
diff --git a/thirdparty/glslang/SPIRV/SpvBuilder.h b/thirdparty/glslang/SPIRV/SpvBuilder.h
|
||||
index a65a98e337..1499592c4f 100644
|
||||
--- a/thirdparty/glslang/SPIRV/SpvBuilder.h
|
||||
+++ b/thirdparty/glslang/SPIRV/SpvBuilder.h
|
||||
@@ -56,6 +56,7 @@ namespace spv {
|
||||
}
|
||||
|
||||
#include <algorithm>
|
||||
+#include <cstdint>
|
||||
#include <map>
|
||||
#include <memory>
|
||||
#include <set>
|
||||
1
thirdparty/thorvg/inc/thorvg.h
vendored
1
thirdparty/thorvg/inc/thorvg.h
vendored
|
|
@ -15,6 +15,7 @@
|
|||
#ifndef _THORVG_H_
|
||||
#define _THORVG_H_
|
||||
|
||||
#include <cstdint>
|
||||
#include <functional>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
|
|
|||
12
thirdparty/thorvg/patches/fix-build-gcc15.patch
vendored
Normal file
12
thirdparty/thorvg/patches/fix-build-gcc15.patch
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
diff --git a/thirdparty/thorvg/inc/thorvg.h b/thirdparty/thorvg/inc/thorvg.h
|
||||
index 8e3ab4e6ce..f515a03136 100644
|
||||
--- a/thirdparty/thorvg/inc/thorvg.h
|
||||
+++ b/thirdparty/thorvg/inc/thorvg.h
|
||||
@@ -1,6 +1,7 @@
|
||||
#ifndef _THORVG_H_
|
||||
#define _THORVG_H_
|
||||
|
||||
+#include <cstdint>
|
||||
#include <functional>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
Loading…
Add table
Add a link
Reference in a new issue