[clangd] Add forgotten include guard to TestFS.h. NFC

llvm-svn: 333548
This commit is contained in:
Ilya Biryukov 2018-05-30 14:21:31 +00:00
parent 5429bd751c
commit e9e88f2ee1
1 changed files with 3 additions and 0 deletions

View File

@ -10,6 +10,8 @@
// Allows setting up fake filesystem environments for tests.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_TOOLS_EXTRA_UNITTESTS_CLANGD_TESTFS_H
#define LLVM_CLANG_TOOLS_EXTRA_UNITTESTS_CLANGD_TESTFS_H
#include "ClangdServer.h"
#include "clang/Basic/VirtualFileSystem.h"
#include "llvm/ADT/IntrusiveRefCntPtr.h"
@ -56,3 +58,4 @@ std::string testPath(PathRef File);
} // namespace clangd
} // namespace clang
#endif