From 5c7cb3b55a3ae6cecf5ca640ff49cfc291658889 Mon Sep 17 00:00:00 2001 From: David Kocik Date: Sun, 17 Jul 2022 19:24:29 +0200 Subject: [PATCH] Delete unused variable --- src/slic3r/GUI/BonjourDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/BonjourDialog.cpp b/src/slic3r/GUI/BonjourDialog.cpp index b416da765f..09d8bdb525 100644 --- a/src/slic3r/GUI/BonjourDialog.cpp +++ b/src/slic3r/GUI/BonjourDialog.cpp @@ -251,7 +251,7 @@ IPListDialog::IPListDialog(wxWindow* parent, const wxString& hostname, const std m_list->AppendColumn(_(L("Address")), wxLIST_FORMAT_LEFT, 40 * em); for (size_t i = 0; i < ips.size(); i++) - auto item = m_list->InsertItem(i, boost::nowide::widen(ips[i].to_string())); + m_list->InsertItem(i, boost::nowide::widen(ips[i].to_string())); m_list->Select(0);