[clangd] Mark non-changing fields of CppFile as const. NFC

llvm-svn: 325486
This commit is contained in:
Ilya Biryukov 2018-02-19 11:15:33 +00:00
parent 048e2508ad
commit 842ee61b33
1 changed files with 2 additions and 2 deletions

View File

@ -155,8 +155,8 @@ private:
IntrusiveRefCntPtr<vfs::FileSystem> FS,
llvm::MemoryBuffer &ContentsBuffer) const;
Path FileName;
bool StorePreamblesInMemory;
const Path FileName;
const bool StorePreamblesInMemory;
/// The last parsed AST.
llvm::Optional<ParsedAST> AST;