Applied llvm-else-after-return clang-tidy fixes

This commit is contained in:
Bartek Kryza
2022-12-23 16:59:33 +01:00
parent 91487cf49f
commit 4c7c9ff7dc
3 changed files with 5 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ std::shared_ptr<decorator> decorator::from_string(std::string_view c)
if (c.find(skip_relationship::label) == 0) {
return skip_relationship::from_string(c);
}
else if (c.find(skip::label) == 0) {
if (c.find(skip::label) == 0) {
return skip::from_string(c);
}
else if (c.find(style::label) == 0) {