Skip to content

Commit feaee0e

Browse files
feat: introduce any type alias for llvm::json::Value
1 parent 04f5f08 commit feaee0e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

include/Protocol/Basic.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ using decimal = double;
1717

1818
using string = std::string;
1919

20+
using any = llvm::json::Value;
21+
2022
template <typename T>
2123
using array = std::vector<T>;
2224

include/Protocol/Feature/ExecuteCommand.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace clice::proto {
66

77
struct ExecuteCommandParams {
88
string command;
9-
array<llvm::json::Value> arguments;
9+
array<any> arguments;
1010
};
1111

1212
struct TextDocumentParams {

0 commit comments

Comments
 (0)