mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 12:55:45 +00:00
video_core/memory_manager: Mark the constructor as explicit
Prevents implicit converting constructions of the memory manager.
This commit is contained in:
parent
cb867f250a
commit
24e9c43cf1
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue