From 5cfa36f36e51832a5aeea8c0e97a4a654456f538 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci 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 d4700d3f44..8f94ceda67 100644 --- a/xs/src/libslic3r/Config.hpp +++ b/xs/src/libslic3r/Config.hpp @@ -58,7 +58,7 @@ class ConfigOptionVector : public ConfigOptionVectorBase std::vector values; void set(const ConfigOption &option) { - const const ConfigOptionVector* other = dynamic_cast< const ConfigOptionVector* >(&option); + const ConfigOptionVector* other = dynamic_cast< const ConfigOptionVector* >(&option); if (other != NULL) this->values = other->values; };