We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cef16a commit b606238Copy full SHA for b606238
clang-tools-extra/clangd/Diagnostics.cpp
@@ -312,7 +312,7 @@ std::string mainMessage(const Diag &D, const ClangdDiagnosticOptions &Opts) {
312
llvm::raw_string_ostream OS(Result);
313
OS << D.Message;
314
if (Opts.DisplayFixesCount && !D.Fixes.empty())
315
- OS << " (" << (D.Fixes.size() > 1 ? "fixes" : "fix") << " available)";
+ OS << " (" << (D.Fixes.size() > 1 ? "fixes" : "fix") << " available)"; // TODO
316
// If notes aren't emitted as structured info, add them to the message.
317
if (!Opts.EmitRelatedLocations)
318
for (auto &Note : D.Notes) {
0 commit comments