Fixed type aliases handling

This commit is contained in:
Bartek Kryza
2024-01-25 00:33:08 +01:00
parent 9376b856cc
commit 757b4d0947
9 changed files with 52 additions and 30 deletions

View File

@@ -29,7 +29,7 @@ class template_element : public element, public template_trait {
public:
using element::element;
virtual ~template_element() = default;
~template_element() override = default;
/**
* Whether or not the class is a template.
@@ -76,4 +76,4 @@ private:
bool is_template_{false};
};
}
} // namespace clanguml::common::model