const_string::toStdString() is const

This commit is contained in:
Sebastian Messmer 2015-09-18 17:31:27 +02:00
parent 3573a6fa74
commit 0fc5731f18

View File

@ -52,7 +52,7 @@ namespace cpputils {
return !operator==(rhs);
}
std::string toStdString() {
std::string toStdString() const {
return std::string(_str, _size);
}