Remove pointless GetString override in the list option values

This commit is contained in:
Thomas Goyne 2012-10-26 17:54:26 -07:00
parent 99a20e4d1c
commit a266d32ce4
1 changed files with 0 additions and 1 deletions

View File

@ -146,7 +146,6 @@ CONFIG_OPTIONVALUE(Bool, bool)
std::vector<type> array_default; \
std::string name; \
public: \
virtual std::string GetString() const { return "";} \
OptionValueList##type_name(std::string const& name, std::vector<type> const& value = std::vector<type>()) \
: array(value), array_default(value), name(name) { } \
std::vector<type> const& GetList##type_name() const { return array; } \