Fix Clang error

This commit is contained in:
Mat Sutcliffe
2020-11-03 22:51:44 +00:00
parent f461f60635
commit 0c3977fc35

View File

@@ -389,7 +389,7 @@ namespace BlackMisc
{ {
if (m_combinedType.length() < 1) { return {}; } if (m_combinedType.length() < 1) { return {}; }
QChar c(m_combinedType.at(0)); QChar c(m_combinedType.at(0));
if (c == "-") { return {}; } if (c == '-') { return {}; }
return c; return c;
} }