summaryrefslogtreecommitdiffstats
path: root/src/video_core/memory_manager.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-05-10 01:05:50 +0200
committerLioncash <mathew1800@gmail.com>2019-05-10 01:10:26 +0200
commitd4bcd006b298e7a58026e2cd311d581b25731ddd (patch)
tree609e3521abb65dc136eb0afb47165865cc25aa2f /src/video_core/memory_manager.h
parentvideo_core/memory_manager: Default the destructor within the cpp file (diff)
downloadyuzu-d4bcd006b298e7a58026e2cd311d581b25731ddd.tar
yuzu-d4bcd006b298e7a58026e2cd311d581b25731ddd.tar.gz
yuzu-d4bcd006b298e7a58026e2cd311d581b25731ddd.tar.bz2
yuzu-d4bcd006b298e7a58026e2cd311d581b25731ddd.tar.lz
yuzu-d4bcd006b298e7a58026e2cd311d581b25731ddd.tar.xz
yuzu-d4bcd006b298e7a58026e2cd311d581b25731ddd.tar.zst
yuzu-d4bcd006b298e7a58026e2cd311d581b25731ddd.zip
Diffstat (limited to 'src/video_core/memory_manager.h')
-rw-r--r--src/video_core/memory_manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/memory_manager.h b/src/video_core/memory_manager.h
index 4f7b57f8e..f69a25706 100644
--- a/src/video_core/memory_manager.h
+++ b/src/video_core/memory_manager.h
@@ -47,7 +47,7 @@ struct VirtualMemoryArea {
class MemoryManager final {
public:
- MemoryManager(VideoCore::RasterizerInterface& rasterizer);
+ explicit MemoryManager(VideoCore::RasterizerInterface& rasterizer);
~MemoryManager();
GPUVAddr AllocateSpace(u64 size, u64 align);