summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-02-25 07:17:46 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-02-25 07:17:46 +0000
commit742964b29c098c7f328617d78796a7e01d50782d (patch)
treeabd397c44a8926cdc1fa85d30e4d14c0a5acf634
parente1200b06d0978c21686a27b20a87893dbe96777a (diff)
downloadATCD-742964b29c098c7f328617d78796a7e01d50782d.tar.gz
ChangeLogTag:Thu Feb 24 23:13:36 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/tao/SystemException.h6
2 files changed, 11 insertions, 3 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index a3a09b5ed84..47d07e8b0f4 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Thu Feb 24 23:13:36 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
+
+ * tao/SystemException.h (SystemException):
+
+ Made copy constructor public. HP aC++ wants to have a public
+ copy constructor when the exception is listed in an exception
+ specification.
+
Thu Feb 24 22:49:17 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
* tao/PortableServer/Upcall_Wrapper.h:
diff --git a/TAO/tao/SystemException.h b/TAO/tao/SystemException.h
index 7647ce6f7ef..307dcebe51e 100644
--- a/TAO/tao/SystemException.h
+++ b/TAO/tao/SystemException.h
@@ -80,6 +80,9 @@ namespace CORBA
{
public:
+ /// Copy constructor.
+ SystemException (const SystemException & src);
+
/// Destructor.
~SystemException (void);
@@ -141,9 +144,6 @@ namespace CORBA
/// Default constructor.
SystemException (void);
- /// Copy constructor.
- SystemException (const SystemException & src);
-
/// Assignment operator.
SystemException & operator= (const SystemException &src);