summaryrefslogtreecommitdiff
path: root/bridges/source/jni_uno
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-02-07 12:07:41 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-02-07 12:35:56 +0100
commit2b55846a33cec1cfceb41be6f05978cdeb002e93 (patch)
tree05216472baf05b8c24f7806682317ecbc2e19c51 /bridges/source/jni_uno
parentd93bcf77902f21310f1ab45ffed404462e7c77b8 (diff)
loplugin:deletedspecial
Change-Id: Ifac86f4d7e637e9fdbce7e60f6d383e7dca69508
Diffstat (limited to 'bridges/source/jni_uno')
-rw-r--r--bridges/source/jni_uno/jni_base.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/bridges/source/jni_uno/jni_base.h b/bridges/source/jni_uno/jni_base.h
index 25dee559c98a..7fe21359bb24 100644
--- a/bridges/source/jni_uno/jni_base.h
+++ b/bridges/source/jni_uno/jni_base.h
@@ -57,8 +57,8 @@ class JNI_context
JNIEnv * m_env;
jobject m_class_loader;
- JNI_context( JNI_context & ); // not impl
- void operator = ( JNI_context ); // not impl
+ JNI_context( JNI_context & ) SAL_DELETED_FUNCTION;
+ void operator = ( JNI_context ) SAL_DELETED_FUNCTION;
void java_exc_occurred() const;
public:
@@ -120,8 +120,8 @@ class JNI_guarded_context
: private ::jvmaccess::VirtualMachine::AttachGuard,
public JNI_context
{
- JNI_guarded_context( JNI_guarded_context & ); // not impl
- void operator = ( JNI_guarded_context ); // not impl
+ JNI_guarded_context( JNI_guarded_context & ) SAL_DELETED_FUNCTION;
+ void operator = ( JNI_guarded_context ) SAL_DELETED_FUNCTION;
public:
inline explicit JNI_guarded_context(
@@ -236,8 +236,8 @@ class TypeDescr
{
typelib_TypeDescription * m_td;
- TypeDescr( TypeDescr & ); // not impl
- void operator = ( TypeDescr ); // not impl
+ TypeDescr( TypeDescr & ) SAL_DELETED_FUNCTION;
+ void operator = ( TypeDescr ) SAL_DELETED_FUNCTION;
public:
inline explicit TypeDescr( typelib_TypeDescriptionReference * td_ref );