refactor: clang format line length

This commit is contained in:
Lars Toenning
2024-11-16 19:27:30 +01:00
parent c7779e1461
commit 1a0b2a8c5f
1352 changed files with 25994 additions and 26603 deletions

View File

@@ -32,7 +32,8 @@ namespace swift::sample
QScopedPointer<CVPilotRulesReader> vPilotReader(new CVPilotRulesReader());
bool s = vPilotReader->read(false);
streamOut << "Read success: " << swift::misc::boolToYesNo(s) << Qt::endl;
streamOut << "Read " << vPilotReader->countRulesLoaded() << " rules from " << vPilotReader->countFilesLoaded() << " files" << Qt::endl;
streamOut << "Read " << vPilotReader->countRulesLoaded() << " rules from " << vPilotReader->countFilesLoaded()
<< " files" << Qt::endl;
streamOut << "Distributors: " << vPilotReader->getRules().getSortedDistributors().join(", ");
Q_UNUSED(streamIn);