summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/memory/memory_block_manager.h
diff options
context:
space:
mode:
authorcomex <comexk@gmail.com>2020-11-14 23:57:51 +0100
committercomex <comexk@gmail.com>2020-12-07 00:36:10 +0100
commitfeac654ba04951e77e8642cfe188277a688ca779 (patch)
treea04c30809b8353b1c6ef0ac927df72a7291184e1 /src/core/hle/kernel/memory/memory_block_manager.h
parentMerge pull request #5143 from comex/xx-users-size (diff)
downloadyuzu-feac654ba04951e77e8642cfe188277a688ca779.tar
yuzu-feac654ba04951e77e8642cfe188277a688ca779.tar.gz
yuzu-feac654ba04951e77e8642cfe188277a688ca779.tar.bz2
yuzu-feac654ba04951e77e8642cfe188277a688ca779.tar.lz
yuzu-feac654ba04951e77e8642cfe188277a688ca779.tar.xz
yuzu-feac654ba04951e77e8642cfe188277a688ca779.tar.zst
yuzu-feac654ba04951e77e8642cfe188277a688ca779.zip
Diffstat (limited to 'src/core/hle/kernel/memory/memory_block_manager.h')
-rw-r--r--src/core/hle/kernel/memory/memory_block_manager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/memory/memory_block_manager.h b/src/core/hle/kernel/memory/memory_block_manager.h
index 6e1d41075..f57d1bbcc 100644
--- a/src/core/hle/kernel/memory/memory_block_manager.h
+++ b/src/core/hle/kernel/memory/memory_block_manager.h
@@ -57,8 +57,8 @@ public:
private:
void MergeAdjacent(iterator it, iterator& next_it);
- const VAddr start_addr;
- const VAddr end_addr;
+ [[maybe_unused]] const VAddr start_addr;
+ [[maybe_unused]] const VAddr end_addr;
MemoryBlockTree memory_block_tree;
};