[clang-tools-extra] 7a3be97 - [clangd][Hover] Get rid of unused private field in Paragraph
Kadir Cetinkaya via cfe-commits
cfe-commits at lists.llvm.org
Thu Apr 30 03:13:28 PDT 2020
Author: Kadir Cetinkaya
Date: 2020-04-30T12:13:18+02:00
New Revision: 7a3be975b92fece93e07bfc6451e9a39eb6f5142
URL: https://github.com/llvm/llvm-project/commit/7a3be975b92fece93e07bfc6451e9a39eb6f5142
DIFF: https://github.com/llvm/llvm-project/commit/7a3be975b92fece93e07bfc6451e9a39eb6f5142.diff
LOG: [clangd][Hover] Get rid of unused private field in Paragraph
Added:
Modified:
clang-tools-extra/clangd/FormattedString.h
Removed:
################################################################################
diff --git a/clang-tools-extra/clangd/FormattedString.h b/clang-tools-extra/clangd/FormattedString.h
index 8c522d060c4f..6558f265a687 100644
--- a/clang-tools-extra/clangd/FormattedString.h
+++ b/clang-tools-extra/clangd/FormattedString.h
@@ -58,8 +58,6 @@ class Paragraph : public Block {
InlineCode,
} Kind = PlainText;
std::string Contents;
- /// Language for code block chunks. Ignored for other chunks.
- std::string Language;
};
std::vector<Chunk> Chunks;
};
More information about the cfe-commits
mailing list