Skip to content

Commit 4ff8304

Browse files
committed
format
1 parent 81a8337 commit 4ff8304

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

lib/checkio.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -713,11 +713,11 @@ static int getMaxArgNo(const Library::Function *func)
713713
{
714714
const auto &checks = func->argumentChecks;
715715
return std::max_element(checks.cbegin(), checks.cend(),
716-
[](const std::pair<int, Library::ArgumentChecks> &lhs,
717-
const std::pair<int, Library::ArgumentChecks> &rhs) {
718-
return lhs.first < rhs.first;
719-
}
720-
)->first;
716+
[](const std::pair<int, Library::ArgumentChecks> &lhs,
717+
const std::pair<int, Library::ArgumentChecks> &rhs) {
718+
return lhs.first < rhs.first;
719+
}
720+
)->first;
721721
}
722722

723723
void CheckIOImpl::checkWrongPrintfScanfArguments()

0 commit comments

Comments
 (0)