diff options
| author | Joshua Vandaƫle <joshua@vandaele.software> | 2026-06-23 05:11:14 +0200 |
|---|---|---|
| committer | Joshua Vandaƫle <joshua@vandaele.software> | 2026-06-23 21:09:18 +0200 |
| commit | faaea5919a142d40353df851d2ce1aed66733dd4 (patch) | |
| tree | c317cbed13bca0f0ddc8cce986e3aadbb736da63 /Source/Core | |
| parent | e97b1cd759deeb6c2e0b7a6de33d5986ee033b6e (diff) | |
Add missing includes
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Common/Crypto/AES.cpp | 1 | ||||
| -rw-r--r-- | Source/Core/Common/TimeUtil.cpp | 4 | ||||
| -rw-r--r-- | Source/Core/VideoBackends/OGL/OGLBoundingBox.cpp | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/Source/Core/Common/Crypto/AES.cpp b/Source/Core/Common/Crypto/AES.cpp index a83812ff2e..7d6ddb6463 100644 --- a/Source/Core/Common/Crypto/AES.cpp +++ b/Source/Core/Common/Crypto/AES.cpp @@ -4,6 +4,7 @@ #include "Common/Crypto/AES.h" #include <array> +#include <cstring> #include <memory> #include <mbedtls/aes.h> diff --git a/Source/Core/Common/TimeUtil.cpp b/Source/Core/Common/TimeUtil.cpp index 93327e9136..e57078b7e9 100644 --- a/Source/Core/Common/TimeUtil.cpp +++ b/Source/Core/Common/TimeUtil.cpp @@ -2,11 +2,13 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include "Common/TimeUtil.h" -#include "Common/Logging/Log.h" +#include <cstring> #include <ctime> #include <optional> +#include "Common/Logging/Log.h" + namespace Common { std::optional<std::tm> LocalTime(std::time_t time) diff --git a/Source/Core/VideoBackends/OGL/OGLBoundingBox.cpp b/Source/Core/VideoBackends/OGL/OGLBoundingBox.cpp index 9b36a75b63..673e308d53 100644 --- a/Source/Core/VideoBackends/OGL/OGLBoundingBox.cpp +++ b/Source/Core/VideoBackends/OGL/OGLBoundingBox.cpp @@ -3,6 +3,8 @@ #include "VideoBackends/OGL/OGLBoundingBox.h" +#include <cstring> + #include "VideoBackends/OGL/OGLGfx.h" #include "VideoCommon/DriverDetails.h" |
