diff options
author | Jack Lloyd <[email protected]> | 2018-09-10 19:19:19 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-10-01 12:53:53 -0400 |
commit | 8eb900731da945d276f723534af09592213ee582 (patch) | |
tree | d080c6fd2ca760796b522d21288b0b4bfc0b6e65 /src/lib/x509 | |
parent | a792728e8941b62761052f5e0d288ba13a016c77 (diff) |
Remove support for Visual C++ 2013
Closes GH #1557
Diffstat (limited to 'src/lib/x509')
-rw-r--r-- | src/lib/x509/x509_ca.h | 2 | ||||
-rw-r--r-- | src/lib/x509/x509_ext.h | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/x509/x509_ca.h b/src/lib/x509/x509_ca.h index c8ffab69d..ab24e0301 100644 --- a/src/lib/x509/x509_ca.h +++ b/src/lib/x509/x509_ca.h @@ -199,10 +199,8 @@ class BOTAN_PUBLIC_API(2,0) X509_CA final X509_CA(const X509_CA&) = delete; X509_CA& operator=(const X509_CA&) = delete; -#if !defined(BOTAN_BUILD_COMPILER_IS_MSVC_2013) X509_CA(X509_CA&&) = default; X509_CA& operator=(X509_CA&&) = default; -#endif ~X509_CA(); diff --git a/src/lib/x509/x509_ext.h b/src/lib/x509/x509_ext.h index 687c58b0c..48a9f338c 100644 --- a/src/lib/x509/x509_ext.h +++ b/src/lib/x509/x509_ext.h @@ -233,10 +233,8 @@ class BOTAN_PUBLIC_API(2,0) Extensions final : public ASN1_Object Extensions(const Extensions&) = default; Extensions& operator=(const Extensions&) = default; -#if !defined(BOTAN_BUILD_COMPILER_IS_MSVC_2013) Extensions(Extensions&&) = default; Extensions& operator=(Extensions&&) = default; -#endif private: static std::unique_ptr<Certificate_Extension> |