mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-18 08:11:40 +00:00
VideoCommon/NetPlayChatUI: Default destructor in the cpp file
Ensures that the destruction logic is kept local to the translation unit (making it nicer when it comes to forward declaring non-trivial types). It also doesn't really do much to define it in the header.
This commit is contained in:
parent
53b115b81e
commit
c958fc1278
2 changed files with 3 additions and 1 deletions
|
@ -18,6 +18,8 @@ NetPlayChatUI::NetPlayChatUI(std::function<void(const std::string&)> callback)
|
|||
{
|
||||
}
|
||||
|
||||
NetPlayChatUI::~NetPlayChatUI() = default;
|
||||
|
||||
void NetPlayChatUI::Display()
|
||||
{
|
||||
const float scale = ImGui::GetIO().DisplayFramebufferScale.x;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue