Kaydet (Commit) cd5c0adf authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:deletedspecial

Change-Id: I52253f6b925a943edc2984ce4d9462bd1edb5f51
üst be90769d
...@@ -278,8 +278,8 @@ public: ...@@ -278,8 +278,8 @@ public:
} }
private: private:
Writer(Writer &); // not implemented Writer(Writer &) SAL_DELETED_FUNCTION;
void operator =(Writer); // not implemented void operator =(Writer) SAL_DELETED_FUNCTION;
void * m_handle; void * m_handle;
}; };
......
...@@ -23,6 +23,8 @@ ...@@ -23,6 +23,8 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include <sal/types.h>
namespace registry namespace registry
{ {
namespace tools namespace tools
...@@ -31,8 +33,8 @@ class Options ...@@ -31,8 +33,8 @@ class Options
{ {
std::string m_program; std::string m_program;
Options (Options const &); Options (Options const &) SAL_DELETED_FUNCTION;
Options & operator= (Options const &); Options & operator= (Options const &) SAL_DELETED_FUNCTION;
public: public:
explicit Options (char const * program); explicit Options (char const * program);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment