Version.cpp: Format parse function code using clang-format

Signed-off-by: Edgars Cīrulis <edgarsscirulis@gmail.com>
This commit is contained in:
Edgars Cīrulis 2023-01-15 17:44:17 +02:00
parent 198139feb4
commit a84e4b0e07
No known key found for this signature in database
GPG Key ID: 307C4E4663F1FCC3

View File

@ -88,8 +88,7 @@ void Version::parse()
currentSection = "";
}
currentSection += current_char;
}
else if(current_char == '.' || current_char == '-' || current_char == '_'){
} else if (current_char == '.' || current_char == '-' || current_char == '_') {
if (!currentSection.isEmpty()) {
m_sections.append(Section(currentSection));
}