mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-05 16:32:08 +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
|
// llvmorg-12-init-11522-g4c55c3b66de
|
||||||
auto bounds = ComputePreambleBounds(*ci.getLangOpts(), *buf, 0);
|
auto bounds = ComputePreambleBounds(*ci.getLangOpts(), *buf, 0);
|
||||||
// llvmorg-12-init-17739-gf4d02fbe418d
|
// llvmorg-12-init-17739-gf4d02fbe418d
|
||||||
if (!task.from_diag && oldP &&
|
if (!task.from_diag && oldP && oldP->preamble.CanReuse(ci, *buf, bounds, *fs))
|
||||||
oldP->preamble.CanReuse(ci, *buf, bounds, *fs))
|
|
||||||
return;
|
return;
|
||||||
#else
|
#else
|
||||||
auto bounds = ComputePreambleBounds(*ci.getLangOpts(), buf.get(), 0);
|
auto bounds = ComputePreambleBounds(*ci.getLangOpts(), buf.get(), 0);
|
||||||
@ -558,8 +557,7 @@ void *completionMain(void *manager_) {
|
|||||||
std::string content = manager->wfiles->getContent(task->path);
|
std::string content = manager->wfiles->getContent(task->path);
|
||||||
auto buf = llvm::MemoryBuffer::getMemBuffer(content);
|
auto buf = llvm::MemoryBuffer::getMemBuffer(content);
|
||||||
#if LLVM_VERSION_MAJOR >= 12 // llvmorg-12-init-11522-g4c55c3b66de
|
#if LLVM_VERSION_MAJOR >= 12 // llvmorg-12-init-11522-g4c55c3b66de
|
||||||
PreambleBounds bounds =
|
PreambleBounds bounds = ComputePreambleBounds(*ci->getLangOpts(), *buf, 0);
|
||||||
ComputePreambleBounds(*ci->getLangOpts(), *buf, 0);
|
|
||||||
#else
|
#else
|
||||||
PreambleBounds bounds =
|
PreambleBounds bounds =
|
||||||
ComputePreambleBounds(*ci->getLangOpts(), buf.get(), 0);
|
ComputePreambleBounds(*ci->getLangOpts(), buf.get(), 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user