[clang-tools-extra] r338526 - [clangd] Correct the namespace of ParsedAST forward declaration, NFC.
Haojian Wu via cfe-commits
cfe-commits at lists.llvm.org
Wed Aug 1 05:50:44 PDT 2018
Author: hokein
Date: Wed Aug 1 05:50:44 2018
New Revision: 338526
URL: http://llvm.org/viewvc/llvm-project?rev=338526&view=rev
Log:
[clangd] Correct the namespace of ParsedAST forward declaration, NFC.
Modified:
clang-tools-extra/trunk/clangd/FindSymbols.h
Modified: clang-tools-extra/trunk/clangd/FindSymbols.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/FindSymbols.h?rev=338526&r1=338525&r2=338526&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/FindSymbols.h (original)
+++ clang-tools-extra/trunk/clangd/FindSymbols.h Wed Aug 1 05:50:44 2018
@@ -17,8 +17,8 @@
#include "llvm/ADT/StringRef.h"
namespace clang {
-class ParsedAST;
namespace clangd {
+class ParsedAST;
class SymbolIndex;
/// Searches for the symbols matching \p Query. The syntax of \p Query can be
More information about the cfe-commits
mailing list