mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
synced 2025-12-16 03:12:40 +00: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