123456789101112131415161718192021 |
- From 2b418d38a36327e29f156b3c640e83f8c6caf067 Mon Sep 17 00:00:00 2001
- From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= <[email protected]>
- Date: Thu, 27 Apr 2023 17:51:09 +0200
- Subject: [PATCH] Add missing standard include (#517)
- ---
- Jolt/Core/Core.h | 1 +
- 1 file changed, 1 insertion(+)
- diff --git a/Jolt/Core/Core.h b/Jolt/Core/Core.h
- index 39c49fa71..a5b5aaac3 100644
- --- a/Jolt/Core/Core.h
- +++ b/Jolt/Core/Core.h
- @@ -296,6 +296,7 @@ JPH_SUPPRESS_WARNINGS_STD_BEGIN
- #include <sstream>
- #include <functional>
- #include <algorithm>
- +#include <cstdint>
- JPH_SUPPRESS_WARNINGS_STD_END
- #include <limits.h>
- #include <float.h>
|