Regenerate nvim config
This commit is contained in:
@ -0,0 +1,6 @@
|
||||
class Foo {
|
||||
public:
|
||||
int x;
|
||||
private:
|
||||
int y;
|
||||
};
|
||||
@ -0,0 +1,7 @@
|
||||
class Foo {
|
||||
int x;
|
||||
class Bar {
|
||||
int y;
|
||||
};
|
||||
Bar z;
|
||||
};
|
||||
@ -0,0 +1,9 @@
|
||||
class Foo
|
||||
{
|
||||
int x;
|
||||
class Bar
|
||||
{
|
||||
int y;
|
||||
};
|
||||
Bar z;
|
||||
};
|
||||
@ -0,0 +1,17 @@
|
||||
class Foo {
|
||||
|
||||
Foo(int a, int b, int c, int d)
|
||||
: m_a(a)
|
||||
, m_b(b)
|
||||
, m_c(c)
|
||||
, m_d(d) {}
|
||||
|
||||
Foo(int a, int b, int c) :
|
||||
m_a(a),
|
||||
m_b(b),
|
||||
m_c(c)
|
||||
{}
|
||||
|
||||
int m_a, m_b, m_c, m_d;
|
||||
};
|
||||
|
||||
@ -0,0 +1,7 @@
|
||||
#include <iostream>
|
||||
|
||||
void foo(int x) {
|
||||
std::cout << x
|
||||
<< x + 1
|
||||
<< x + 2;
|
||||
}
|
||||
Reference in New Issue
Block a user