summaryrefslogtreecommitdiff
path: root/ACE/ace/Guard_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Guard_T.h')
-rw-r--r--ACE/ace/Guard_T.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/Guard_T.h b/ACE/ace/Guard_T.h
index b90de0bced4..e85ff7f5dfa 100644
--- a/ACE/ace/Guard_T.h
+++ b/ACE/ace/Guard_T.h
@@ -124,8 +124,8 @@ protected:
private:
// = Prevent assignment and initialization.
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Guard<ACE_LOCK> &))
- ACE_UNIMPLEMENTED_FUNC (ACE_Guard (const ACE_Guard<ACE_LOCK> &))
+ void operator= (const ACE_Guard<ACE_LOCK> &) = delete;
+ ACE_Guard (const ACE_Guard<ACE_LOCK> &) = delete;
};
/**
@@ -284,8 +284,8 @@ private:
typedef ACE_Guard<ACE_LOCK> Guard_Type;
// FUZZ: enable check_for_ACE_Guard
- ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS_Guard<ACE_LOCK> &))
- ACE_UNIMPLEMENTED_FUNC (ACE_TSS_Guard (const ACE_TSS_Guard<ACE_LOCK> &))
+ void operator= (const ACE_TSS_Guard<ACE_LOCK> &) = delete;
+ ACE_TSS_Guard (const ACE_TSS_Guard<ACE_LOCK> &) = delete;
};
/**