mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-03 15:32:09 +00:00
format
This commit is contained in:
parent
fdef0037f4
commit
ca2a610686
@ -429,8 +429,7 @@ void buildPreamble(Session &session, CompilerInvocation &ci,
|
||||
// llvmorg-12-init-11522-g4c55c3b66de
|
||||
auto bounds = ComputePreambleBounds(*ci.getLangOpts(), *buf, 0);
|
||||
// llvmorg-12-init-17739-gf4d02fbe418d
|
||||
if (!task.from_diag && oldP &&
|
||||
oldP->preamble.CanReuse(ci, *buf, bounds, *fs))
|
||||
if (!task.from_diag && oldP && oldP->preamble.CanReuse(ci, *buf, bounds, *fs))
|
||||
return;
|
||||
#else
|
||||
auto bounds = ComputePreambleBounds(*ci.getLangOpts(), buf.get(), 0);
|
||||
@ -558,8 +557,7 @@ void *completionMain(void *manager_) {
|
||||
std::string content = manager->wfiles->getContent(task->path);
|
||||
auto buf = llvm::MemoryBuffer::getMemBuffer(content);
|
||||
#if LLVM_VERSION_MAJOR >= 12 // llvmorg-12-init-11522-g4c55c3b66de
|
||||
PreambleBounds bounds =
|
||||
ComputePreambleBounds(*ci->getLangOpts(), *buf, 0);
|
||||
PreambleBounds bounds = ComputePreambleBounds(*ci->getLangOpts(), *buf, 0);
|
||||
#else
|
||||
PreambleBounds bounds =
|
||||
ComputePreambleBounds(*ci->getLangOpts(), buf.get(), 0);
|
||||
|
Loading…
Reference in New Issue
Block a user