Run clang-format
This commit is contained in:
@@ -1,23 +1,12 @@
|
||||
class CX
|
||||
{
|
||||
class CX {
|
||||
private:
|
||||
int a;
|
||||
int b;
|
||||
int a;
|
||||
int b;
|
||||
|
||||
public:
|
||||
CX() = default;
|
||||
CX(int a_, int b_):
|
||||
a(a_),b(b_)
|
||||
{}
|
||||
int get_a() const
|
||||
{
|
||||
return a;
|
||||
}
|
||||
int get_b() const
|
||||
{
|
||||
return b;
|
||||
}
|
||||
int foo() const
|
||||
{
|
||||
return a+b;
|
||||
}
|
||||
CX() = default;
|
||||
CX(int a_, int b_) : a(a_), b(b_) {}
|
||||
int get_a() const { return a; }
|
||||
int get_b() const { return b; }
|
||||
int foo() const { return a + b; }
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user