[PATCH] D73619: [clangd] Remove the temporary alias for clangd::DiagnosticConsumer.
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jan 29 05:59:13 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGfce8983a3c03: [clangd] Remove the temporary alias for clangd::DiagnosticConsumer. (authored by hokein).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D73619/new/
https://reviews.llvm.org/D73619
Files:
clang-tools-extra/clangd/ClangdServer.h
Index: clang-tools-extra/clangd/ClangdServer.h
===================================================================
--- clang-tools-extra/clangd/ClangdServer.h
+++ clang-tools-extra/clangd/ClangdServer.h
@@ -165,12 +165,6 @@
const FileSystemProvider &FSProvider, const Options &Opts,
Callbacks *Callbacks = nullptr);
- // FIXME: remove this compatibility alias.
- ClangdServer(const GlobalCompilationDatabase &CDB,
- const FileSystemProvider &FSProvider, Callbacks &Callbacks,
- const Options &Opts)
- : ClangdServer(CDB, FSProvider, Opts, &Callbacks) {}
-
/// Add a \p File to the list of tracked C++ files or update the contents if
/// \p File is already tracked. Also schedules parsing of the AST for it on a
/// separate thread. When the parsing is complete, DiagConsumer passed in
@@ -359,9 +353,6 @@
TUScheduler WorkScheduler;
};
-// FIXME: Remove this compatibility alias.
-using DiagnosticsConsumer = ClangdServer::Callbacks;
-
} // namespace clangd
} // namespace clang
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D73619.241131.patch
Type: text/x-patch
Size: 1066 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200129/8c7fbf0a/attachment.bin>
More information about the cfe-commits
mailing list