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

@@ -311,7 +311,7 @@ std::shared_ptr<clanguml::config::diagram> parse_diagram_config(const Node &d)
if (diagram_type == "sequence") {
return std::make_shared<sequence_diagram>(d.as<sequence_diagram>());
}
else if (diagram_type == "package") {
if (diagram_type == "package") {
return std::make_shared<package_diagram>(d.as<package_diagram>());
}
else if (diagram_type == "include") {