#27 Compiler warning fix

master
Tomatix 3 years ago
parent 204513405a
commit 9d29452eb4
  1. 3
      Script/ValueHolder.cpp

@ -782,6 +782,9 @@ std::string ValueHolder::toStdString() const
case Type::Void:
return "[void]";
}
// Compiler complains even if all cases are covered... So this return is highly unlikely to happen... unless a new type is introduced.
return "[???]";
}
void ValueHolder::setArray(const std::string& subscript, const ValueHolder& val)

Loading…
Cancel
Save