summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2020-04-05 14:47:43 -0400
committerGravatar bunnei2020-04-17 00:59:30 -0400
commitfc040b5b70dc4ca3d4217a65afc438a18c6930bd (patch)
tree2ac30e64ac20952eca2ac5d733c700300e759074
parentkernel: memory: Add MemoryBlock class, for managing memory blocks and their s... (diff)
downloadyuzu-fc040b5b70dc4ca3d4217a65afc438a18c6930bd.tar.gz
yuzu-fc040b5b70dc4ca3d4217a65afc438a18c6930bd.tar.xz
yuzu-fc040b5b70dc4ca3d4217a65afc438a18c6930bd.zip
physical_memory: Add missing include for <vector>.
-rw-r--r--src/core/hle/kernel/physical_memory.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/physical_memory.h b/src/core/hle/kernel/physical_memory.h
index b689e8e8b..7a0266780 100644
--- a/src/core/hle/kernel/physical_memory.h
+++ b/src/core/hle/kernel/physical_memory.h
@@ -4,6 +4,8 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <vector>
8
7#include "common/alignment.h" 9#include "common/alignment.h"
8 10
9namespace Kernel { 11namespace Kernel {