Skip to content

Commit

Permalink
fix CI (explicitely delete copy constr)
Browse files Browse the repository at this point in the history
  • Loading branch information
FAlbertDev committed May 23, 2024
1 parent aa8f551 commit 862a4a8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/lib/pubkey/hybrid_kem/hybrid_kem.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,14 @@ BOTAN_DIAGNOSTIC_IGNORE_INHERITED_VIA_DOMINANCE
*/
class BOTAN_TEST_API Hybrid_PrivateKey : virtual public Private_Key {
public:
Hybrid_PrivateKey(const Hybrid_PrivateKey&) = delete;
Hybrid_PrivateKey& operator=(const Hybrid_PrivateKey&) = delete;

Hybrid_PrivateKey(Hybrid_PrivateKey&&) = default;
Hybrid_PrivateKey& operator=(Hybrid_PrivateKey&&) = default;

~Hybrid_PrivateKey() override = default;

/**
* @brief Constructor for a list of multiple KEM private keys.
*
Expand Down

0 comments on commit 862a4a8

Please sign in to comment.