Skip to content

Commit 0598937

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 6f81932 commit 0598937

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

exercises/operators/operators.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ class TestResultPrinter {
4848
static TestResultPrinter printer(64);
4949
return printer;
5050
}
51-
51+
5252
void process(std::string const & what, bool passed) {
53-
std::cout << std::left << std::setw(m_width) << what << ": "
53+
std::cout << std::left << std::setw(m_width) << what << ": "
5454
<< (passed ? "PASS" : "** FAIL **") << '\n';
5555
}
5656
private:

exercises/operators/solution/operators_sol.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ class TestResultPrinter {
5959
static TestResultPrinter printer(64);
6060
return printer;
6161
}
62-
62+
6363
void operator()(std::string const & what, bool passed) {
64-
std::cout << std::left << std::setw(m_width) << what << ": "
64+
std::cout << std::left << std::setw(m_width) << what << ": "
6565
<< (passed ? "PASS" : "** FAIL **") << '\n';
6666
}
6767
private:

0 commit comments

Comments
 (0)