[clangd] Fix typo in GUARDED_BY()

Reviewers: ilya-biryukov, kadircet, sammccall

Subscribers: javed.absar, MaskRay, jkorous, arphaman, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D63193

llvm-svn: 363139
This commit is contained in:
Nikolai Kosjar 2019-06-12 11:01:19 +00:00
parent 4cfcacbdfe
commit f6efac67e1
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ private:
// The lifetime of the old/new ASTWorkers will overlap, but their handles
// don't. When the old handle is destroyed, the old worker will stop reporting
// diagnostics.
bool ReportDiagnostics = true; /* GUARDED_BY(DiagMu) */
bool ReportDiagnostics = true; /* GUARDED_BY(DiagsMu) */
};
/// A smart-pointer-like class that points to an active ASTWorker.