Remove extra const

This commit is contained in:
Jesse Hills 2024-08-21 11:59:28 +12:00
parent 0f73ae4ae1
commit 0c261fef75
No known key found for this signature in database
GPG key ID: BEAAE804EFD8E83A

View file

@ -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_{};