Fixed: trimQuotes

--HG--
branch : develop
This commit is contained in:
Nimetu 2019-05-12 12:54:41 +03:00
parent 6a8b3a342d
commit e6aa13258b

View file

@ -282,9 +282,11 @@ template <class T> T trimQuotes (const T &str)
typename T::size_type size = str.size();
if (size == 0)
return str;
if (str[0] != str[size-1] && (str[0] != '"' || str[0] != '\''))
if (str[0] != str[size-1])
return str;
return str.substr(1, size - 1);
if (str[0] != '"' && str[0] != '\'')
return str;
return str.substr(1, size - 2);
}
//////////////////////////////////////////////////////////////////////////