mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 10:18:15 -05:00
Explicitly instantiate constructors/destructors for Kernel objects
This should speed up compile times a bit, as well as enable more liberal use of forward declarations. (Due to SharedPtr not trying to emit the destructor anymore.)
This commit is contained in:
@ -47,7 +47,8 @@ public:
|
||||
void Release();
|
||||
|
||||
private:
|
||||
Mutex() = default;
|
||||
Mutex();
|
||||
~Mutex() override;
|
||||
};
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user