Commit ec8cc487 authored by Dominik Charousset's avatar Dominik Charousset

fixed error w/ explicit ctor, relates #115

parent ee336330
...@@ -26,7 +26,7 @@ vector<string> kvp_split(const string& str) { ...@@ -26,7 +26,7 @@ vector<string> kvp_split(const string& str) {
if (pos != string::npos && pos == str.rfind('=')) { if (pos != string::npos && pos == str.rfind('=')) {
return vector<string>{str.substr(0, pos), str.substr(pos+1)}; return vector<string>{str.substr(0, pos), str.substr(pos+1)};
} }
return {}; return vector<string>{};
} }
optional<int> toint(const string& str) { optional<int> toint(const string& str) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment