1f094e50d0
These are accessible through the :YcmCompleter command. The docs have more information.
19 lines
161 B
C++
19 lines
161 B
C++
struct Foo {
|
|
int bar;
|
|
int zoo;
|
|
};
|
|
|
|
struct Bar {
|
|
int foo;
|
|
int zoo;
|
|
};
|
|
|
|
struct Foo;
|
|
struct Zoo;
|
|
|
|
void func() {
|
|
Foo foo;
|
|
foo.bar = 5;
|
|
Zoo *zoo = 0;
|
|
}
|