forked from OSchip/llvm-project
[clangd] Define constants in the right namespace. NFC
llvm-svn: 319579
This commit is contained in:
parent
2fcf58e933
commit
8fed634e21
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue