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

loplugin:deletedspecial

Change-Id: I2d9d12c1f5574ce5f0aad216fb18fb94070c1eb1
üst 98eef218
......@@ -111,10 +111,10 @@ public:
}
private:
ClassPath(); // not defined
ClassPath(ClassPath &); // not defined
~ClassPath(); // not defined
void operator =(ClassPath &); // not defined
ClassPath() SAL_DELETED_FUNCTION; //TODO: get rid of this class
ClassPath(ClassPath &) SAL_DELETED_FUNCTION;
~ClassPath() SAL_DELETED_FUNCTION;
void operator =(ClassPath &) SAL_DELETED_FUNCTION;
// Functions that replace JNIEnv, jobjectArray, and jclass with void *, so
// that their mangled C++ names do not depend on the JDK version used at
......
......@@ -88,8 +88,8 @@ public:
void * getClassLoader() const { return m_classLoader;}
private:
UnoVirtualMachine(UnoVirtualMachine &); // not defined
void operator =(UnoVirtualMachine &); // not defined
UnoVirtualMachine(UnoVirtualMachine &) SAL_DELETED_FUNCTION;
void operator =(UnoVirtualMachine &) SAL_DELETED_FUNCTION;
virtual ~UnoVirtualMachine();
......
......@@ -82,8 +82,8 @@ public:
inline JNIEnv * getEnvironment() const { return m_pEnvironment; }
private:
AttachGuard(AttachGuard &); // not implemented
void operator =(AttachGuard); // not implemented
AttachGuard(AttachGuard &) SAL_DELETED_FUNCTION;
void operator =(AttachGuard) SAL_DELETED_FUNCTION;
rtl::Reference< VirtualMachine > m_xMachine;
JNIEnv * m_pEnvironment;
......@@ -128,8 +128,8 @@ public:
JNIEnv * pMainThreadEnv);
private:
VirtualMachine(VirtualMachine &); // not implemented
void operator =(VirtualMachine); // not implemented
VirtualMachine(VirtualMachine &) SAL_DELETED_FUNCTION;
void operator =(VirtualMachine) SAL_DELETED_FUNCTION;
virtual ~VirtualMachine();
......
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