src: Fixed clang error

This commit is contained in:
Eberhard Graether
2018-02-14 00:35:44 +01:00
parent b2bad8ab05
commit e7a3345f09
+1 -1
View File
@@ -162,7 +162,7 @@ namespace utility
{
if (prefix.size() <= text.size())
{
std::pair<StringType::const_iterator, StringType::const_iterator> res =
std::pair<typename StringType::const_iterator, typename StringType::const_iterator> res =
std::mismatch(prefix.begin(), prefix.end(), text.begin());
return res.first == prefix.end();