mirror of
https://github.com/esphome/esphome.git
synced 2025-03-14 04:25:15 +01:00
Remove extra const
This commit is contained in:
parent
0f73ae4ae1
commit
0c261fef75
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ class APINoiseContext {
|
|||
this->has_psk_ = has_psk;
|
||||
}
|
||||
const psk_t &get_psk() const { return this->psk_; }
|
||||
const bool has_psk() const { return this->has_psk_; }
|
||||
bool has_psk() const { return this->has_psk_; }
|
||||
|
||||
protected:
|
||||
psk_t psk_{};
|
||||
|
|
Loading…
Add table
Reference in a new issue