summaryrefslogtreecommitdiff
path: root/cppu/qa/test_any.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cppu/qa/test_any.cxx')
-rw-r--r--cppu/qa/test_any.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/cppu/qa/test_any.cxx b/cppu/qa/test_any.cxx
index 4fdd4a485edc..e173b1072f39 100644
--- a/cppu/qa/test_any.cxx
+++ b/cppu/qa/test_any.cxx
@@ -43,7 +43,6 @@
#include "Struct2.hpp"
#include "Struct2a.hpp"
#include "Struct2b.hpp"
-#include "boost/noncopyable.hpp"
#include "boost/type_traits/is_same.hpp"
#include "com/sun/star/uno/Any.hxx"
#include "com/sun/star/uno/Reference.hxx"
@@ -59,10 +58,13 @@
namespace {
-class Base: private boost::noncopyable {
+class Base {
public:
Base(): m_count(0) {}
+ Base(const Base&) = delete;
+ const Base& operator=(const Base&) = delete;
+
void acquire() {
if (osl_atomic_increment(&m_count) == SAL_MAX_INT32) {
abort();