Applied modernize-pass-by-value clang-tidy fixes

This commit is contained in:
Bartek Kryza
2022-12-20 22:40:15 +01:00
parent 0ce7b533f4
commit 1116c3ab67
12 changed files with 46 additions and 35 deletions

View File

@@ -29,8 +29,8 @@ namespace clanguml::class_diagram::model {
class class_element : public common::model::decorated_element,
public common::model::source_location {
public:
class_element(common::model::access_t scope, const std::string &name,
const std::string &type);
class_element(
common::model::access_t scope, std::string name, std::string type);
common::model::access_t access() const;
std::string name() const;