1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00
Files
godot/thirdparty/thorvg/patches/fix-build-gcc15.patch
Rémi Verschelde 3aafddd63b Add missing cstdint includes for GCC 15
(cherry picked from commit 1823460787)
2025-01-30 08:28:25 +01:00

13 lines
326 B
Diff

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>