2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

video_core/memory_manager: Mark the constructor as explicit

Prevents implicit converting constructions of the memory manager.
This commit is contained in:
Lioncash 2019-05-09 19:05:50 -04:00
parent fd12788967
commit d4bcd006b2

View file

@ -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);