diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2023-05-10 15:47:50 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-05-10 15:48:07 +0200 |
| commit | 9e9b07ffd3a715e1a1a0e2d686a69c515d0e8a4b (patch) | |
| tree | 876514df8078015deb9942fdd93ab37cd9275091 | |
| parent | 4e1d5be9d33e8a14254f0ccd0910743073970413 (diff) | |
| download | redot-engine-9e9b07ffd3a715e1a1a0e2d686a69c515d0e8a4b.tar.gz | |
rvo2: Include cstdint for uint32_t
Fixes #76907.
| -rw-r--r-- | thirdparty/rvo2/rvo2_2d/Definitions.h | 1 | ||||
| -rw-r--r-- | thirdparty/rvo2/rvo2_3d/Agent3d.h | 1 |
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> |
