FIX: Fix missing std::set declaration

/run/build/BambuStudio/src/slic3r/GUI/Widgets/DropDown.cpp:281:10: error: ‘set’ is not a member of ‘std’
  281 |     std::set<wxString> groups;
      |          ^~~

(cherry picked from commit 842152b65a3584a9a59950f52260b20951dd09a5)
This commit is contained in:
Bastien Nocera
2025-03-25 18:05:23 +01:00
committed by Noisyfox
parent b8b83a6f15
commit a0bde11b29

View File

@@ -9,6 +9,8 @@
#include <gtk/gtk.h>
#endif
#include <set>
wxDEFINE_EVENT(EVT_DISMISS, wxCommandEvent);
BEGIN_EVENT_TABLE(DropDown, PopupWindow)