clang format

This commit is contained in:
rhcher 2022-07-01 13:28:58 +08:00
parent 74458915b3
commit b1e36f60a7
6 changed files with 14 additions and 9 deletions

View File

@ -118,7 +118,8 @@ buildCompilerInvocation(const std::string &main, std::vector<const char *> 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<driver::Compilation> comp(d.BuildCompilation(args));
@ -127,7 +128,7 @@ buildCompilerInvocation(const std::string &main, std::vector<const char *> 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<driver::BindArchAction>(a))
a = *a->input_begin();

View File

@ -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() &&

View File

@ -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())

View File

@ -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

View File

@ -49,7 +49,8 @@ std::pair<LanguageId, bool> 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)

View File

@ -339,7 +339,8 @@ std::optional<int> 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