summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2022-11-28 10:19:51 -0500
committerGravatar Lioncash2022-11-28 10:19:53 -0500
commitc2c9b4474981e075a5e21ce0deed8667c1e49510 (patch)
treef63fd8ba8159b7b61aea4bd48bca6542122e6c35 /src
parentMerge pull request #9325 from german77/default_by_default (diff)
downloadyuzu-c2c9b4474981e075a5e21ce0deed8667c1e49510.tar.gz
yuzu-c2c9b4474981e075a5e21ce0deed8667c1e49510.tar.xz
yuzu-c2c9b4474981e075a5e21ce0deed8667c1e49510.zip
common/cache_management: Amend header includes
Narrows the include in the header to <cstddef>, since that's what houses size_t's definition, meanwhile the <cstdint> include can be moved into the cpp file.
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 @@
1// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project 1// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
2// SPDX-License-Identifier: GPL-2.0-or-later 2// SPDX-License-Identifier: GPL-2.0-or-later
3 3
4#include <cstdint>
4#include <cstring> 5#include <cstring>
5 6
6#include "alignment.h" 7#include "common/cache_management.h"
7#include "cache_management.h"
8#include "common_types.h"
9 8
10namespace Common { 9namespace Common {
11 10
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 @@
3 3
4#pragma once 4#pragma once
5 5
6#include "stdlib.h" 6#include <cstddef>
7 7
8namespace Common { 8namespace Common {
9 9