mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-23 16:15:07 +00:00
18 lines
241 B
C++
18 lines
241 B
C++
namespace hello {
|
|
void foo() {}
|
|
}
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"funcs": [{
|
|
"id": 0,
|
|
"usr": "c:@N@hello@F@foo#",
|
|
"short_name": "foo",
|
|
"qualified_name": "hello::foo",
|
|
"definition": "1:2:6",
|
|
"uses": ["1:2:6"]
|
|
}]
|
|
}
|
|
*/
|