summaryrefslogtreecommitdiff
path: root/bridges/source/cpp_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/cpp_uno
parentd93bcf77902f21310f1ab45ffed404462e7c77b8 (diff)
loplugin:deletedspecial
Change-Id: Ifac86f4d7e637e9fdbce7e60f6d383e7dca69508
Diffstat (limited to 'bridges/source/cpp_uno')
-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 9874fc596a82..842536cd21d2 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 &); // not implemented
- void operator =(GuardedArray); // not implemented
+ GuardedArray(GuardedArray &) SAL_DELETED_FUNCTION;
+ void operator =(GuardedArray) SAL_DELETED_FUNCTION;
T * pointer;
};