apply clang tidy fix (#2579)

This commit is contained in:
borgmanJeremy
2022-05-03 08:09:42 -05:00
committed by GitHub
parent 4aebf2b568
commit 972458496f

View File

@@ -518,7 +518,7 @@ QSet<QString> ConfigHandler::keysFromGroup(const QString& group) const
bool ConfigHandler::checkForErrors(AbstractLogger* log) const
{
return checkUnrecognizedSettings(log) & checkShortcutConflicts(log) &
return checkUnrecognizedSettings(log) && checkShortcutConflicts(log) &&
checkSemantics(log);
}