mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-26 17:41:58 +00:00
18 lines
281 B
C++
18 lines
281 B
C++
namespace hello {
|
|
void foo(int a, int b);
|
|
}
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"last_modification_time": 1,
|
|
"funcs": [{
|
|
"id": 0,
|
|
"usr": "c:@N@hello@F@foo#I#I#",
|
|
"short_name": "foo",
|
|
"detailed_name": "void hello::foo(int, int)",
|
|
"declarations": ["2:6-2:9"]
|
|
}]
|
|
}
|
|
*/
|