summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2020-07-15 22:08:05 -0400
committerGravatar GitHub2020-07-15 22:08:05 -0400
commitf26f53f35b0a1b4476a6bc671faafdab639f959d (patch)
treefdb7acdebe8104bc91e9e4086d9f153b23ddffa4
parentMerge pull request #4342 from lioncash/endian (diff)
parentmemory_layout: Remove unused data member (diff)
downloadyuzu-f26f53f35b0a1b4476a6bc671faafdab639f959d.tar.gz
yuzu-f26f53f35b0a1b4476a6bc671faafdab639f959d.tar.xz
yuzu-f26f53f35b0a1b4476a6bc671faafdab639f959d.zip
Merge pull request #4328 from lioncash/unused-var3
memory_layout: Remove unused data member
-rw-r--r--src/core/hle/kernel/memory/memory_layout.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/kernel/memory/memory_layout.h b/src/core/hle/kernel/memory/memory_layout.h
index 830c6f0d7..9b3d6267a 100644
--- a/src/core/hle/kernel/memory/memory_layout.h
+++ b/src/core/hle/kernel/memory/memory_layout.h
@@ -66,8 +66,6 @@ private:
66 const MemoryRegion application; 66 const MemoryRegion application;
67 const MemoryRegion applet; 67 const MemoryRegion applet;
68 const MemoryRegion system; 68 const MemoryRegion system;
69
70 const PAddr start_address{};
71}; 69};
72 70
73} // namespace Kernel::Memory 71} // namespace Kernel::Memory