summaryrefslogtreecommitdiff
path: root/bridges/source/cpp_uno/shared/guardedarray.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/source/cpp_uno/shared/guardedarray.hxx')
-rw-r--r--bridges/source/cpp_uno/shared/guardedarray.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bridges/source/cpp_uno/shared/guardedarray.hxx b/bridges/source/cpp_uno/shared/guardedarray.hxx
index 842536cd21d2..ad5d6bdaa4c1 100644
--- a/bridges/source/cpp_uno/shared/guardedarray.hxx
+++ b/bridges/source/cpp_uno/shared/guardedarray.hxx
@@ -33,8 +33,8 @@ public:
T * release() { T * p = pointer; pointer = 0; return p; }
private:
- GuardedArray(GuardedArray &) SAL_DELETED_FUNCTION;
- void operator =(GuardedArray) SAL_DELETED_FUNCTION;
+ GuardedArray(GuardedArray &) = delete;
+ void operator =(GuardedArray) = delete;
T * pointer;
};