mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
17 lines
239 B
C++
17 lines
239 B
C++
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;
|
|
};
|
|
|