summaryrefslogtreecommitdiff
path: root/graphics/asymptote/LspCpp/include/LibLsp/lsp/textDocument/code_lens.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/LspCpp/include/LibLsp/lsp/textDocument/code_lens.h')
-rw-r--r--graphics/asymptote/LspCpp/include/LibLsp/lsp/textDocument/code_lens.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/asymptote/LspCpp/include/LibLsp/lsp/textDocument/code_lens.h b/graphics/asymptote/LspCpp/include/LibLsp/lsp/textDocument/code_lens.h
index 9dd763333d..b9241de06b 100644
--- a/graphics/asymptote/LspCpp/include/LibLsp/lsp/textDocument/code_lens.h
+++ b/graphics/asymptote/LspCpp/include/LibLsp/lsp/textDocument/code_lens.h
@@ -21,10 +21,10 @@ struct lsCodeLens {
// The range in which this code lens is valid. Should only span a single line.
lsRange range;
// The command this code lens represents.
- boost::optional<lsCommandWithAny> command;
+ optional<lsCommandWithAny> command;
// A data entry field that is preserved on a code lens item between
// a code lens and a code lens resolve request.
- boost::optional< lsp::Any> data;
+ optional< lsp::Any> data;
MAKE_SWAP_METHOD(lsCodeLens, range, command, data)
};