mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 03:25:46 +00:00
yuzu/bootmanager: Default EmuThread's destructor in the cpp file
This class contains non-trivial members, so we should default the destructor's definition within the cpp file.
This commit is contained in:
parent
982ebbb022
commit
c0600099bd
2 changed files with 4 additions and 1 deletions
|
@ -27,11 +27,12 @@ namespace VideoCore {
|
|||
enum class LoadCallbackStage;
|
||||
}
|
||||
|
||||
class EmuThread : public QThread {
|
||||
class EmuThread final : public QThread {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit EmuThread(GRenderWindow* render_window);
|
||||
~EmuThread() override;
|
||||
|
||||
/**
|
||||
* Start emulation (on new thread)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue