From 538e6d6e7c75b7cca5470604811205f9dbd55c03 Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Thu, 8 Jun 2023 03:01:59 +0000 Subject: CTAN sync 202306080301 --- graphics/asymptote/LspCpp/include/LibLsp/lsp/symbol.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'graphics/asymptote/LspCpp/include/LibLsp/lsp/symbol.h') diff --git a/graphics/asymptote/LspCpp/include/LibLsp/lsp/symbol.h b/graphics/asymptote/LspCpp/include/LibLsp/lsp/symbol.h index 87ebfe89ed..216c3f7d13 100644 --- a/graphics/asymptote/LspCpp/include/LibLsp/lsp/symbol.h +++ b/graphics/asymptote/LspCpp/include/LibLsp/lsp/symbol.h @@ -66,7 +66,7 @@ struct lsDocumentHighlight { lsRange range; // The highlight kind, default is DocumentHighlightKind.Text. - boost::optional kind ; + optional kind ; MAKE_SWAP_METHOD(lsDocumentHighlight, range, kind) }; @@ -85,7 +85,7 @@ struct lsSymbolInformation { /** * Indicates if this symbol is deprecated. */ - boost::optional deprecated; + optional deprecated; /** * The location of this symbol. The location's range is used by a tool * to reveal the location in the editor. If the symbol is selected in the @@ -104,7 +104,7 @@ struct lsSymbolInformation { * if necessary). It can't be used to re-infer a hierarchy for the document * symbols. */ - boost::optional containerName; + optional containerName; MAKE_SWAP_METHOD(lsSymbolInformation, name, kind, deprecated, location, containerName); @@ -144,17 +144,17 @@ struct lsDocumentSymbol { * More detail for this symbol, e.g the signature of a function. If not provided the * name is used. */ - boost::optional< std::string > detail; + optional< std::string > detail; /** * Indicates if this symbol is deprecated. */ - boost::optional< bool > deprecated; + optional< bool > deprecated; /** * Children of this symbol, e.g. properties of a class. */ - boost::optional < std::vector > children; + optional < std::vector > children; //internal use int flags=0; -- cgit v1.2.3