Clang formatter: add indent to wrapped functions names. (#548)
This commit is contained in:
@@ -11,7 +11,7 @@ std::unique_ptr<IrdaAppFileParser::IrdaFileMessage> IrdaAppFileParser::read_mess
|
||||
}
|
||||
|
||||
std::unique_ptr<IrdaAppFileParser::IrdaFileMessage>
|
||||
IrdaAppFileParser::parse_message(const std::string& str) const {
|
||||
IrdaAppFileParser::parse_message(const std::string& str) const {
|
||||
char protocol_name[32];
|
||||
uint32_t address;
|
||||
uint32_t command;
|
||||
|
@@ -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;
|
||||
|
Reference in New Issue
Block a user