mirror of
https://github.com/MaskRay/ccls.git
synced 2025-12-18 13:12:19 +00:00
Since the introduction of "ColumnLimit: 120" in .clang-format, the column limit has become 120 characters instead of 80 characters. This prevents clang-format from generating too much changes even if just a small portion of a source file or header file is modified.
14 lines
363 B
C++
14 lines
363 B
C++
// Copyright 2017-2018 ccls Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#pragma once
|
|
|
|
#include <llvm/Support/FileSystem.h>
|
|
#include <llvm/Support/Path.h>
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
|
|
void getFilesInFolder(std::string folder, bool recursive, bool add_folder_to_path,
|
|
const std::function<void(const std::string &)> &handler);
|