Enable readability-named-parameter check (#3098)

Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
This commit is contained in:
Oxan van Leeuwen
2022-01-23 08:39:07 +01:00
committed by GitHub
parent 7da12a878f
commit b2430097f2
10 changed files with 14 additions and 16 deletions
+2 -2
View File
@@ -49,8 +49,8 @@ class Sim800LComponent : public uart::UARTDevice, public PollingComponent {
void dial(const std::string &recipient);
protected:
void send_cmd_(const std::string &);
void parse_cmd_(std::string);
void send_cmd_(const std::string &message);
void parse_cmd_(std::string message);
std::string sender_;
char read_buffer_[SIM800L_READ_BUFFER_LENGTH];