This commit is contained in:
Alessandro Ranellucci 2016-11-24 17:00:09 +01:00
parent a1fd0fe60a
commit 0c63bc0f83
2 changed files with 3 additions and 1 deletions

View File

@ -103,4 +103,6 @@ inline bool operator!=(const BoundingBoxBase<VT> &bb1, const BoundingBoxBase<VT>
return !(bb1 == bb2);
}
}
#endif

View File

@ -224,7 +224,7 @@ class ConfigOptionString : public ConfigOptionSingle<std::string>
std::string serialize() const {
return escape_string_cstyle(this->value);
}
};
bool deserialize(std::string str, bool append = false) {
return unescape_string_cstyle(str, this->value);