MXS-2483: Add missing deletion of defaulted functions
This commit is contained in:
parent
e5f0d3eb37
commit
52ef9afcc6
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user