Fix typo #3152
This commit is contained in:
parent
4913e90e10
commit
5cfa36f36e
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue