MXS-2483: Add missing deletion of defaulted functions
This commit is contained in:
@ -91,6 +91,9 @@ struct SSLConfig
|
|||||||
class SSLContext
|
class SSLContext
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
SSLContext& operator=(SSLContext&) = delete;
|
||||||
|
SSLContext(SSLContext&) = delete;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new SSL configuration
|
* Create a new SSL configuration
|
||||||
*
|
*
|
||||||
@ -143,6 +146,9 @@ private:
|
|||||||
class SSLProvider
|
class SSLProvider
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
SSLProvider& operator=(SSLProvider&) = delete;
|
||||||
|
SSLProvider(SSLProvider&) = delete;
|
||||||
|
|
||||||
SSLProvider(std::unique_ptr<mxs::SSLContext> context);
|
SSLProvider(std::unique_ptr<mxs::SSLContext> context);
|
||||||
|
|
||||||
const mxs::SSLConfig& config() const;
|
const mxs::SSLConfig& config() const;
|
||||||
|
|||||||
Reference in New Issue
Block a user