summaryrefslogtreecommitdiff
path: root/include/jvmaccess/classpath.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/jvmaccess/classpath.hxx')
-rw-r--r--include/jvmaccess/classpath.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/jvmaccess/classpath.hxx b/include/jvmaccess/classpath.hxx
index aed2c8b4fd95..f412fd59a4aa 100644
--- a/include/jvmaccess/classpath.hxx
+++ b/include/jvmaccess/classpath.hxx
@@ -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