summaryrefslogtreecommitdiff
path: root/graphics/asymptote/LspCpp/include/LibLsp/lsp/lsMarkedString.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/LspCpp/include/LibLsp/lsp/lsMarkedString.h')
-rw-r--r--graphics/asymptote/LspCpp/include/LibLsp/lsp/lsMarkedString.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/graphics/asymptote/LspCpp/include/LibLsp/lsp/lsMarkedString.h b/graphics/asymptote/LspCpp/include/LibLsp/lsp/lsMarkedString.h
index 9191aa66d1..975ee4fed0 100644
--- a/graphics/asymptote/LspCpp/include/LibLsp/lsp/lsMarkedString.h
+++ b/graphics/asymptote/LspCpp/include/LibLsp/lsp/lsMarkedString.h
@@ -20,24 +20,24 @@
// Note that markdown strings will be sanitized - that means html will be
// escaped.
struct lsMarkedString {
- boost::optional<std::string> language;
- std::string value;
+ boost::optional<std::string> language;
+ std::string value;
};
struct MarkupContent {
- /**
- * The type of the Markup.
- */
+ /**
+ * The type of the Markup.
+ */
- std::string kind;
+ std::string kind;
- /**
- * The content itself.
- */
-
- std::string value;
+ /**
+ * The content itself.
+ */
- MAKE_SWAP_METHOD(MarkupContent, kind, value);
+ std::string value;
+
+ MAKE_SWAP_METHOD(MarkupContent, kind, value);
};
MAKE_REFLECT_STRUCT(MarkupContent,kind,value);