Remove dev::utf8 namespace

This commit is contained in:
Alex Beregszaszi
2016-08-08 20:05:31 +01:00
parent f1df3dee53
commit 5d9347f022
3 changed files with 1 additions and 11 deletions
+1 -1
View File
@@ -857,7 +857,7 @@ std::string StringLiteralType::toString(bool) const
{
size_t invalidSequence;
if (!dev::utf8::validate(m_value, invalidSequence))
if (!dev::validate(m_value, invalidSequence))
return "literal_string (contains invalid UTF-8 sequence at position " + dev::toString(invalidSequence) + ")";
return "literal_string \"" + m_value + "\"";