diff --git a/src/clang_tu.cc b/src/clang_tu.cc index 9e026652..69405c6e 100644 --- a/src/clang_tu.cc +++ b/src/clang_tu.cc @@ -118,7 +118,8 @@ buildCompilerInvocation(const std::string &main, std::vector args, #if LLVM_VERSION_MAJOR < 12 // llvmorg-12-init-5498-g257b29715bb driver::Driver d(args[0], llvm::sys::getDefaultTargetTriple(), *diags, vfs); #else - driver::Driver d(args[0], llvm::sys::getDefaultTargetTriple(), *diags, "ccls", vfs); + driver::Driver d(args[0], llvm::sys::getDefaultTargetTriple(), *diags, "ccls", + vfs); #endif d.setCheckInputsExist(false); std::unique_ptr comp(d.BuildCompilation(args)); @@ -127,7 +128,7 @@ buildCompilerInvocation(const std::string &main, std::vector args, const driver::JobList &jobs = comp->getJobs(); bool offload_compilation = false; if (jobs.size() > 1) { - for (auto &a : comp->getActions()){ + for (auto &a : comp->getActions()) { // On MacOSX real actions may end up being wrapped in BindArchAction if (isa(a)) a = *a->input_begin(); diff --git a/src/messages/textDocument_document.cc b/src/messages/textDocument_document.cc index 5d34668c..cd29df73 100644 --- a/src/messages/textDocument_document.cc +++ b/src/messages/textDocument_document.cc @@ -191,7 +191,8 @@ void MessageHandler::textDocument_documentSymbol(JsonReader &reader, ds->detail = def->detailed_name; ds->kind = def->kind; - if (!ignore(def) && (ds->kind == SymbolKind::Namespace || allows(sym))) { + if (!ignore(def) && + (ds->kind == SymbolKind::Namespace || allows(sym))) { // Drop scopes which are before selectionRange.start. In // `int i, j, k;`, the scope of i will be ended by j. while (!scopes.empty() && diff --git a/src/messages/textDocument_hover.cc b/src/messages/textDocument_hover.cc index 8d4dc73d..764d9318 100644 --- a/src/messages/textDocument_hover.cc +++ b/src/messages/textDocument_hover.cc @@ -53,9 +53,9 @@ getHover(DB *db, LanguageId lang, SymbolRef sym, int file_id) { if (d.spell) { if (d.comments[0]) comments = d.comments; - if (const char *s = - d.hover[0] ? d.hover - : d.detailed_name[0] ? d.detailed_name : nullptr) { + if (const char *s = d.hover[0] ? d.hover + : d.detailed_name[0] ? d.detailed_name + : nullptr) { if (!hover) hover = {languageIdentifier(lang), s}; else if (strlen(s) > hover->value.size()) diff --git a/src/messages/textDocument_signatureHelp.cc b/src/messages/textDocument_signatureHelp.cc index 4192272a..c71e4b78 100644 --- a/src/messages/textDocument_signatureHelp.cc +++ b/src/messages/textDocument_signatureHelp.cc @@ -98,7 +98,8 @@ public: const auto *ccs = #if LLVM_VERSION_MAJOR >= 14 - cand.CreateSignatureString(currentArg, s, *alloc, cCTUInfo, true, braced); + cand.CreateSignatureString(currentArg, s, *alloc, cCTUInfo, true, + braced); #else cand.CreateSignatureString(currentArg, s, *alloc, cCTUInfo, true); #endif diff --git a/src/project.cc b/src/project.cc index c02bd6b6..3ada7502 100644 --- a/src/project.cc +++ b/src/project.cc @@ -49,7 +49,8 @@ std::pair lookupExtension(std::string_view filename) { LanguageId ret; if (types::isCXX(i)) ret = types::isCuda(i) ? LanguageId::Cuda - : objc ? LanguageId::ObjCpp : LanguageId::Cpp; + : objc ? LanguageId::ObjCpp + : LanguageId::Cpp; else if (objc) ret = LanguageId::ObjC; else if (i == types::TY_C || i == types::TY_CHeader) diff --git a/src/working_files.cc b/src/working_files.cc index 4904388b..b234b1b4 100644 --- a/src/working_files.cc +++ b/src/working_files.cc @@ -339,7 +339,8 @@ std::optional WorkingFile::getIndexPosFromBufferPos(int line, int *column, index_lines, is_end); } -Position WorkingFile::getCompletionPosition(Position pos, std::string *filter) const { +Position WorkingFile::getCompletionPosition(Position pos, + std::string *filter) const { int start = getOffsetForPosition(pos, buffer_content); int i = start; #if LLVM_VERSION_MAJOR < 14 // llvmorg-14-init-3863-g601102d282d5