summaryrefslogtreecommitdiff
path: root/ace/DLL.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-12-29 05:14:28 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-12-29 05:14:28 +0000
commitedd5ae6a27c6ac14429bfbd978e1f757f755e85a (patch)
tree93567d4b207824da5e9cc3917f20b88dd7e1ef1e /ace/DLL.h
parent41bb5a1d770d1344d00ae368bac5b0d153837fcf (diff)
downloadATCD-edd5ae6a27c6ac14429bfbd978e1f757f755e85a.tar.gz
.
Diffstat (limited to 'ace/DLL.h')
-rw-r--r--ace/DLL.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/DLL.h b/ace/DLL.h
index 33170a46071..8ce7503e7c2 100644
--- a/ace/DLL.h
+++ b/ace/DLL.h
@@ -95,9 +95,9 @@ private:
// This flag keeps track of whether we should close the handle
// automatically when the destructor runs.
- // = Disable copying and assignment since we don't handle these.
- ACE_DLL (const ACE_DLL &);
- void operator= (const ACE_DLL &);
+ // = Disallow copying and assignment since we don't handle these.
+ ACE_UNIMPLEMENTED_FUNC (ACE_DLL (const ACE_DLL &))
+ ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_DLL &))
};
#endif /* ACE_DLL_H */