Updated clang-format to version 12

This commit is contained in:
Bartek Kryza
2021-08-03 23:47:12 +02:00
parent d629398389
commit 55f1cc0298
16 changed files with 121 additions and 114 deletions

View File

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