From 402faf37585f7ac7a54ada50f8e6f94fce8d36e7 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 30 Apr 2017 03:13:09 -0400 Subject: [PATCH] MemoryWindow: Make constructor explicit --- Source/Core/DolphinWX/Debugger/MemoryWindow.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinWX/Debugger/MemoryWindow.h b/Source/Core/DolphinWX/Debugger/MemoryWindow.h index c2811b598f..d1226aadbe 100644 --- a/Source/Core/DolphinWX/Debugger/MemoryWindow.h +++ b/Source/Core/DolphinWX/Debugger/MemoryWindow.h @@ -23,9 +23,10 @@ class wxRadioButton; class CMemoryWindow : public wxPanel { public: - CMemoryWindow(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize, long style = wxTAB_TRAVERSAL | wxBORDER_NONE, - const wxString& name = _("Memory")); + explicit CMemoryWindow(wxWindow* parent, wxWindowID id = wxID_ANY, + const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, + long style = wxTAB_TRAVERSAL | wxBORDER_NONE, + const wxString& name = _("Memory")); void Repopulate();