diff --git a/src/libslic3r/Config.hpp b/src/libslic3r/Config.hpp index f3ab945ce..c2bcdc1a7 100644 --- a/src/libslic3r/Config.hpp +++ b/src/libslic3r/Config.hpp @@ -1660,7 +1660,7 @@ public: ConfigOptionEnumsGenericTempl& operator= (const ConfigOption* opt) { this->set(opt); return *this; } bool operator< (const ConfigOptionInts& rhs) const throw() { return this->values < rhs.values; } - bool operator==(const ConfigOptionInts& rhs) const throw() + bool operator==(const ConfigOptionInts& rhs) const { if (rhs.type() != this->type()) throw ConfigurationError("ConfigOptionEnumsGeneric: Comparing incompatible types");