Updated test cases documentation

This commit is contained in:
Bartek Kryza
2021-08-03 23:48:37 +02:00
parent 55f1cc0298
commit beeb621140
13 changed files with 41 additions and 40 deletions

View File

@@ -43,7 +43,7 @@ struct C {
class A {
public:
A() {}
A() { }
int add(int x, int y) { return m_c.add(x, y); }
@@ -58,7 +58,7 @@ public:
return res;
}
void log_result(int r) {}
void log_result(int r) { }
private:
detail::C m_c{};