Clang formatter: add indent to wrapped functions names. (#548)

This commit is contained in:
あく
2021-07-01 03:45:20 +03:00
committed by GitHub
parent a0e1e42f2d
commit 8211432685
11 changed files with 24 additions and 15 deletions

View File

@@ -21,7 +21,7 @@ static bool find_string(const std::vector<std::string>& strings, const std::stri
}
static std::string
find_vacant_name(const std::vector<std::string>& strings, const std::string& name) {
find_vacant_name(const std::vector<std::string>& strings, const std::string& name) {
// if suggested name is occupied, try another one (name2, name3, etc)
if(find_string(strings, name)) {
int i = 1;