diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-05-29 06:17:24 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-05-29 06:20:05 -0400 |
| commit | cf0f2bbf1d6703d2c568e36636b4a467f6787214 (patch) | |
| tree | 1108fcea20cace730e81d7a6a8610bcf2b4c0380 /Source/Core/VideoCommon/NetPlayGolfUI.cpp | |
| parent | 0fabab07606883fdd2b31b263d54a2a2908aed16 (diff) | |
VideoCommon/NetPlayGolfUI: Default the destructor in the cpp file
Ensures the destruction logic is kept local to the translation unit. It
also doesn't really do much to have it specified in the header.
Diffstat (limited to 'Source/Core/VideoCommon/NetPlayGolfUI.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/NetPlayGolfUI.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/NetPlayGolfUI.cpp b/Source/Core/VideoCommon/NetPlayGolfUI.cpp index 42fd1186db..fe67f9a63f 100644 --- a/Source/Core/VideoCommon/NetPlayGolfUI.cpp +++ b/Source/Core/VideoCommon/NetPlayGolfUI.cpp @@ -20,6 +20,8 @@ NetPlayGolfUI::NetPlayGolfUI(std::shared_ptr<NetPlay::NetPlayClient> netplay_cli { } +NetPlayGolfUI::~NetPlayGolfUI() = default; + void NetPlayGolfUI::Display() { auto client = m_netplay_client.lock(); |
