mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 23:55:08 +00:00
20 lines
302 B
C++
20 lines
302 B
C++
#include <vector>
|
|
|
|
struct MergeableUpdate {
|
|
std::vector<int> to_add;
|
|
};
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"types": [{
|
|
"id": 0,
|
|
"usr": "c:@S@MergeableUpdate",
|
|
"short_name": "MergeableUpdate",
|
|
"qualified_name": "MergeableUpdate",
|
|
"definition": "1:1:8",
|
|
"uses": ["*1:1:8"]
|
|
}]
|
|
}
|
|
*/
|