[clangd] Define constants in the right namespace. NFC

llvm-svn: 319579
This commit is contained in:
Sam McCall 2017-12-01 20:03:19 +00:00
parent 2fcf58e933
commit 8fed634e21
1 changed files with 5 additions and 1 deletions

View File

@ -58,8 +58,9 @@
#include "llvm/ADT/Optional.h"
#include "llvm/Support/Format.h"
namespace clang {
namespace clangd {
using namespace llvm;
using namespace clang::clangd;
const int FuzzyMatcher::MaxPat;
const int FuzzyMatcher::MaxWord;
@ -371,3 +372,6 @@ llvm::SmallString<256> FuzzyMatcher::dumpLast(llvm::raw_ostream &OS) const {
return Result;
}
} // namespace clangd
} // namespace clang