mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 08:48:41 -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:
|
||||
ResultVal<s32> Release(s32 release_count);
|
||||
|
||||
private:
|
||||
Semaphore() = default;
|
||||
Semaphore();
|
||||
~Semaphore() override;
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
Reference in New Issue
Block a user