Перепись с const std::string& на std::string_view

This commit is contained in:
2026-01-29 09:33:38 +03:00
parent 91d20fcf01
commit 9a7c9b7e7c
11 changed files with 47 additions and 47 deletions
+2 -2
View File
@@ -11,10 +11,10 @@ class MySQLUserTreatmentSchemesDAO : public IUserTreatmentSchemeDAO
public:
explicit MySQLUserTreatmentSchemesDAO(mysqlx::Session& session);
std::vector<user_treatment_scheme_dto> FindByUserUUID(const std::string& uuid) override;
std::vector<user_treatment_scheme_dto> FindByUserUUID(std::string_view uuid) override;
void CreateUserTreatmentScheme(
const std::string& user_login,
std::string_view user_login,
const user_treatment_scheme_dto& dto
) override;
};