From 5cfa36f36e51832a5aeea8c0e97a4a654456f538 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci <aar@cpan.org> Date: Tue, 8 Dec 2015 10:53:57 +0100 Subject: [PATCH] Fix typo #3152 --- xs/src/libslic3r/Config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/libslic3r/Config.hpp b/xs/src/libslic3r/Config.hpp index d4700d3f4..8f94ceda6 100644 --- a/xs/src/libslic3r/Config.hpp +++ b/xs/src/libslic3r/Config.hpp @@ -58,7 +58,7 @@ class ConfigOptionVector : public ConfigOptionVectorBase std::vector<T> values; void set(const ConfigOption &option) { - const const ConfigOptionVector<T>* other = dynamic_cast< const ConfigOptionVector<T>* >(&option); + const ConfigOptionVector<T>* other = dynamic_cast< const ConfigOptionVector<T>* >(&option); if (other != NULL) this->values = other->values; };