Added clang-format target

This commit is contained in:
Bartek Kryza
2021-02-21 12:38:51 +01:00
parent ae808a830b
commit 03a26c88cf
13 changed files with 14783 additions and 12223 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -7,18 +7,13 @@ namespace t00001 {
namespace detail {
struct C {
auto add(int x, int y)
{
return x + y;
}
auto add(int x, int y) { return x + y; }
};
}
class A {
public:
A()
{
}
A() {}
int add(int x, int y) { return m_c.add(x, y); }