Fixed formatting

This commit is contained in:
Bartek Kryza
2022-04-10 13:33:36 +02:00
parent f4d4633ece
commit 8e8945328e
7 changed files with 10 additions and 15 deletions

View File

@@ -45,8 +45,8 @@ void diagram::add_file(std::unique_ptr<common::model::source_file> &&f)
add_element(p, std::move(f));
}
type_safe::optional_ref<const common::model::source_file>
diagram::get_file(const std::string &name) const
type_safe::optional_ref<const common::model::source_file> diagram::get_file(
const std::string &name) const
{
for (const auto &p : files_) {
if (p.get().full_name(false) == name) {