forked from OSchip/llvm-project
[clangd] Bump index version number.
Summary: Though we don't have new changes to the index format, we have changes to symbol collector, e.g. collect marcos, spelled references. Bump the version to force background-index to rebuild. Reviewers: kadircet Reviewed By: kadircet Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, usaxena95, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D74127
This commit is contained in:
parent
1b30b49436
commit
5560a78820
|
@ -419,7 +419,7 @@ readCompileCommand(Reader CmdReader, llvm::ArrayRef<llvm::StringRef> Strings) {
|
||||||
// The current versioning scheme is simple - non-current versions are rejected.
|
// The current versioning scheme is simple - non-current versions are rejected.
|
||||||
// If you make a breaking change, bump this version number to invalidate stored
|
// If you make a breaking change, bump this version number to invalidate stored
|
||||||
// data. Later we may want to support some backward compatibility.
|
// data. Later we may want to support some backward compatibility.
|
||||||
constexpr static uint32_t Version = 12;
|
constexpr static uint32_t Version = 13;
|
||||||
|
|
||||||
llvm::Expected<IndexFileIn> readRIFF(llvm::StringRef Data) {
|
llvm::Expected<IndexFileIn> readRIFF(llvm::StringRef Data) {
|
||||||
auto RIFF = riff::readFile(Data);
|
auto RIFF = riff::readFile(Data);
|
||||||
|
|
Loading…
Reference in New Issue