Fix clang warnings

This commit is contained in:
Dimitris Apostolou 2021-01-21 12:26:03 +02:00
parent 6fc5f88a3b
commit c545814fe4
No known key found for this signature in database
GPG key ID: 4B5D20E938204A8A
4 changed files with 7 additions and 7 deletions

View file

@ -135,7 +135,7 @@ namespace data
//----------------------------------------------------------
const uint8_t B33_TWO_BYTES_SIGTYPE_FLAG = 0x01;
const uint8_t B33_PER_SECRET_FLAG = 0x02; // not used for now
const uint8_t B33_PER_SECRET_FLAG __attribute__((unused)) = 0x02; // not used for now
const uint8_t B33_PER_CLIENT_AUTH_FLAG = 0x04;
BlindedPublicKey::BlindedPublicKey (std::shared_ptr<const IdentityEx> identity, bool clientAuth):