Applied readability-avoid-const-params-in-decls clang-tidy fixes
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user