Fixed formatting

This commit is contained in:
Bartek Kryza
2022-02-24 22:17:35 +01:00
parent 1bde5d7039
commit ae9c516054
4 changed files with 5 additions and 9 deletions

View File

@@ -96,7 +96,8 @@ void class_::add_type_alias(type_alias &&ta)
type_aliases_[ta.alias()] = std::move(ta);
}
std::string class_::full_name_no_ns() const {
std::string class_::full_name_no_ns() const
{
using namespace clanguml::util;
std::ostringstream ostr;

View File

@@ -74,8 +74,7 @@ public:
bool is_abstract() const;
private:
std::ostringstream &render_template_params(
std::ostringstream &ostr) const;
std::ostringstream &render_template_params(std::ostringstream &ostr) const;
bool is_struct_{false};
bool is_template_{false};