mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
d3bd31604e
- Hide declaration from list of refs on types and variables (so now they will show as '0 refs') - Let the user hide code lens on parameter and function-local variables
17 lines
321 B
C++
17 lines
321 B
C++
static int global = 0;
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"vars": [{
|
|
"id": 0,
|
|
"usr": "c:global_variable.cc@global",
|
|
"short_name": "global",
|
|
"detailed_name": "int global",
|
|
"definition_spelling": "1:12-1:18",
|
|
"definition_extent": "1:1-1:22",
|
|
"is_local": false,
|
|
"uses": ["1:12-1:18"]
|
|
}]
|
|
}
|
|
*/
|