summaryrefslogtreecommitdiff
path: root/TAO/tao/LocalObject.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2015-07-22 14:34:48 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2015-07-22 14:34:48 +0200
commit34499bb7c5e0c1be2ede98b8e32266ddaf5e3ead (patch)
treeff2066a27fd70219c4090a78c16fc80937f89b94 /TAO/tao/LocalObject.h
parentbcd30c56f7ef39674a82eb29aa52e9284b923b7e (diff)
downloadATCD-34499bb7c5e0c1be2ede98b8e32266ddaf5e3ead.tar.gz
Use ACE_UNIMPLEMENTED_FUNC so that with C++11 the operators are marked with =delete
* TAO/tao/DynamicInterface/DII_Reply_Handler.h: * TAO/tao/LocalObject.h: * TAO/tao/Object.h:
Diffstat (limited to 'TAO/tao/LocalObject.h')
-rw-r--r--TAO/tao/LocalObject.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/TAO/tao/LocalObject.h b/TAO/tao/LocalObject.h
index bf2aefb2eb7..e03671a6d4f 100644
--- a/TAO/tao/LocalObject.h
+++ b/TAO/tao/LocalObject.h
@@ -160,13 +160,12 @@ namespace CORBA
LocalObject (void);
private:
-
/**
* @name Unimplemented methods
*/
//@{
- LocalObject (const LocalObject &);
- LocalObject & operator = (const LocalObject &);
+ ACE_UNIMPLEMENTED_FUNC (LocalObject (const LocalObject &))
+ ACE_UNIMPLEMENTED_FUNC (LocalObject & operator = (const LocalObject &))
//@}
};