diff options
author | Jack Lloyd <[email protected]> | 2016-09-05 12:01:52 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-09-05 12:01:52 -0400 |
commit | 743320d7007cc66f3ebeebeaafb7b42f1a0362ff (patch) | |
tree | 0d9395f8341f5dc98d9f5c9dce4cca7fb298ba91 /src/lib/cert/x509/x509cert.h | |
parent | 29046be988a4101596478ba53e01a0752cd9e920 (diff) | |
parent | f3e258aa81cd2d83927183d63a9d23eb8f4d7598 (diff) |
Merge GH #624 Use compiler generated operators in X509_Certificate
Diffstat (limited to 'src/lib/cert/x509/x509cert.h')
-rw-r--r-- | src/lib/cert/x509/x509cert.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/cert/x509/x509cert.h b/src/lib/cert/x509/x509cert.h index eb98f9c3d..d64d8fd2b 100644 --- a/src/lib/cert/x509/x509cert.h +++ b/src/lib/cert/x509/x509cert.h @@ -274,9 +274,9 @@ class BOTAN_DLL X509_Certificate : public X509_Object explicit X509_Certificate(const std::vector<byte>& in); - X509_Certificate(const X509_Certificate& other); + X509_Certificate(const X509_Certificate& other) = default; - X509_Certificate& operator=(const X509_Certificate& other); + X509_Certificate& operator=(const X509_Certificate& other) = default; private: void force_decode() override; |