FIX: Fix missing std::set declaration

/run/build/BambuStudio/src/slic3r/GUI/EncodedFilament.hpp: At global scope:
/run/build/BambuStudio/src/slic3r/GUI/EncodedFilament.hpp:81:10: error: ‘set’ in namespace ‘std’ does not name a template type
   81 |     std::set<wxColour, wxColorSorter> m_colors;
      |          ^~~
/run/build/BambuStudio/src/slic3r/GUI/EncodedFilament.hpp:13:1: note: ‘std::set’ is defined in header ‘<set>’; this is probably fixable by adding ‘#include <set>’
   12 | #include <chrono>
  +++ |+#include <set>
   13 |

(cherry picked from commit 9d86c8c15e69158d386596bd860b99b61b2c2e61)
This commit is contained in:
Bastien Nocera 2025-07-18 11:17:10 +02:00 committed by Noisyfox
parent 46abd03bde
commit 902b215eb1

View file

@ -4,6 +4,7 @@
#include <vector>
#include <map>
#include <math.h>
#include <set>
#include <unordered_map>
#include <unordered_set>
@ -225,4 +226,4 @@ private:
};
}
#endif
#endif