[code-quality] weikai.h (#7601)

This commit is contained in:
tomaszduda23 2024-10-24 23:55:58 +02:00 committed by GitHub
parent 4101d5dad1
commit 7dbda12008
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -209,7 +209,7 @@ class WeikaiComponent : public Component {
/// @brief store the name for the component /// @brief store the name for the component
/// @param name the name as defined by the python code generator /// @param name the name as defined by the python code generator
void set_name(std::string name) { this->name_ = std::move(name); } void set_name(std::string &&name) { this->name_ = std::move(name); }
/// @brief Get the name of the component /// @brief Get the name of the component
/// @return the name /// @return the name
@ -308,7 +308,7 @@ class WeikaiChannel : public uart::UARTComponent {
/// @brief The name as generated by the Python code generator /// @brief The name as generated by the Python code generator
/// @param name of the channel /// @param name of the channel
void set_channel_name(std::string name) { this->name_ = std::move(name); } void set_channel_name(std::string &&name) { this->name_ = std::move(name); }
/// @brief Get the channel name /// @brief Get the channel name
/// @return the name /// @return the name