summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-05-10 15:47:50 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-05-10 15:48:07 +0200
commit9e9b07ffd3a715e1a1a0e2d686a69c515d0e8a4b (patch)
tree876514df8078015deb9942fdd93ab37cd9275091
parent4e1d5be9d33e8a14254f0ccd0910743073970413 (diff)
downloadredot-engine-9e9b07ffd3a715e1a1a0e2d686a69c515d0e8a4b.tar.gz
rvo2: Include cstdint for uint32_t
Fixes #76907.
-rw-r--r--thirdparty/rvo2/rvo2_2d/Definitions.h1
-rw-r--r--thirdparty/rvo2/rvo2_3d/Agent3d.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/thirdparty/rvo2/rvo2_2d/Definitions.h b/thirdparty/rvo2/rvo2_2d/Definitions.h
index 4b986fc991..a5553d8378 100644
--- a/thirdparty/rvo2/rvo2_2d/Definitions.h
+++ b/thirdparty/rvo2/rvo2_2d/Definitions.h
@@ -41,6 +41,7 @@
#include <algorithm>
#include <cmath>
#include <cstddef>
+#include <cstdint>
#include <limits>
#include <vector>
diff --git a/thirdparty/rvo2/rvo2_3d/Agent3d.h b/thirdparty/rvo2/rvo2_3d/Agent3d.h
index 3e43646871..d99e3cac66 100644
--- a/thirdparty/rvo2/rvo2_3d/Agent3d.h
+++ b/thirdparty/rvo2/rvo2_3d/Agent3d.h
@@ -38,6 +38,7 @@
#define RVO3D_AGENT_H_
#include <cstddef>
+#include <cstdint>
#include <utility>
#include <vector>