Skip to content

Commit

Permalink
clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Barnes committed Sep 11, 2023
1 parent b06484a commit be8c34c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/mls/credential.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ struct UserInfoVCCredential

friend tls::ostream operator<<(tls::ostream& str, const UserInfoVCCredential& obj);
friend tls::istream operator>>(tls::istream& str, UserInfoVCCredential& obj);
friend bool operator==(const UserInfoVCCredential& str, const UserInfoVCCredential& obj);
friend bool operator!=(const UserInfoVCCredential& str, const UserInfoVCCredential& obj);
friend bool operator==(const UserInfoVCCredential& lhs, const UserInfoVCCredential& rhs);
friend bool operator!=(const UserInfoVCCredential& lhs, const UserInfoVCCredential& rhs);

private:
std::shared_ptr<hpke::UserInfoVC> _vc;
Expand Down
2 changes: 1 addition & 1 deletion test/crypto.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ TEST_CASE("Signature Key JWK Import/Export")
"crv": "Ed25519",
"kid": "059fc2ee-5ef6-456a-91d8-49c422c772b2",
"x": "miljqilAZV2yFkqIBhrxhvt2wIMvPtkNEFzuziEGOtI"
})";
})"s;

const auto known_scheme = SignatureScheme::ed25519;
const auto known_key_id = std::string("059fc2ee-5ef6-456a-91d8-49c422c772b2");
Expand Down

0 comments on commit be8c34c

Please sign in to comment.