Skip to content

Commit

Permalink
apply clang tidy fix (#2579)
Browse files Browse the repository at this point in the history
  • Loading branch information
borgmanJeremy authored May 3, 2022
1 parent 4aebf2b commit 9724584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/confighandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 9724584

Please sign in to comment.