Applied readability-avoid-const-params-in-decls clang-tidy fixes

This commit is contained in:
Bartek Kryza
2022-12-21 17:19:50 +01:00
parent d6a5134ba7
commit 25f787785f
9 changed files with 20 additions and 22 deletions

View File

@@ -43,7 +43,7 @@ public:
const std::string &full_name) const = 0;
virtual common::optional_ref<clanguml::common::model::diagram_element> get(
const diagram_element::id_t id) const = 0;
diagram_element::id_t id) const = 0;
/// \brief Find element in diagram which can have full name or be
/// relative to ns
@@ -67,9 +67,9 @@ public:
bool should_include(const element &e) const;
bool should_include(const std::string &e) const;
bool should_include(const source_file &path) const;
bool should_include(const relationship r) const;
bool should_include(const relationship_t r) const;
bool should_include(const access_t s) const;
bool should_include(relationship r) const;
bool should_include(relationship_t r) const;
bool should_include(access_t s) const;
virtual bool has_element(const diagram_element::id_t id) const
{