MXS-2483: Add missing deletion of defaulted functions

This commit is contained in:
Markus Mäkelä 2019-05-23 18:13:45 +03:00
parent e5f0d3eb37
commit 52ef9afcc6
No known key found for this signature in database
GPG Key ID: 72D48FCE664F7B19

View File

@ -91,6 +91,9 @@ struct SSLConfig
class SSLContext
{
public:
SSLContext& operator=(SSLContext&) = delete;
SSLContext(SSLContext&) = delete;
/**
* Create a new SSL configuration
*
@ -143,6 +146,9 @@ private:
class SSLProvider
{
public:
SSLProvider& operator=(SSLProvider&) = delete;
SSLProvider(SSLProvider&) = delete;
SSLProvider(std::unique_ptr<mxs::SSLContext> context);
const mxs::SSLConfig& config() const;