summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-11-28 13:12:20 -0500
committerGitHub <noreply@github.com>2022-11-28 13:12:20 -0500
commitbbb963a31a141979b27615b9c28bcc72be50468e (patch)
tree9e47c51184bbaa38076805431144a326a7e4e385 /src
parent51abe35e0534b4a6393b8b6ed481912d9f088f72 (diff)
parentc2c9b4474981e075a5e21ce0deed8667c1e49510 (diff)
Merge pull request #9339 from lioncash/cacheheader
common/cache_management: Amend header includes
Diffstat (limited to 'src')
-rw-r--r--src/common/cache_management.cpp5
-rw-r--r--src/common/cache_management.h2
2 files changed, 3 insertions, 4 deletions
diff --git a/src/common/cache_management.cpp b/src/common/cache_management.cpp
index 57810b76a..ed353828a 100644
--- a/src/common/cache_management.cpp
+++ b/src/common/cache_management.cpp
@@ -1,11 +1,10 @@
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
+#include <cstdint>
#include <cstring>
-#include "alignment.h"
-#include "cache_management.h"
-#include "common_types.h"
+#include "common/cache_management.h"
namespace Common {
diff --git a/src/common/cache_management.h b/src/common/cache_management.h
index e467b87e4..038323e95 100644
--- a/src/common/cache_management.h
+++ b/src/common/cache_management.h
@@ -3,7 +3,7 @@
#pragma once
-#include "stdlib.h"
+#include <cstddef>
namespace Common {