Skip to content

Commit

Permalink
Drop NOLINE statement
Browse files Browse the repository at this point in the history
  • Loading branch information
syssi committed Mar 2, 2022
1 parent a401419 commit 8ddbada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/jk_modbus/jk_modbus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ uint16_t chksum(const uint8_t data[], const uint16_t len) {
return checksum;
}

bool JkModbus::parse_jk_modbus_byte_(uint8_t byte) { // NOLINT
bool JkModbus::parse_jk_modbus_byte_(uint8_t byte) {
size_t at = this->rx_buffer_.size();
this->rx_buffer_.push_back(byte);
const uint8_t *raw = &this->rx_buffer_[0];
Expand Down

0 comments on commit 8ddbada

Please sign in to comment.