package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
629 B
21 lines
629 B
From 2b418d38a36327e29f156b3c640e83f8c6caf067 Mon Sep 17 00:00:00 2001 |
|
From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= <lynix680@gmail.com> |
|
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>
|
|
|