summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-08-03 03:46:52 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-08-03 03:46:52 +0000
commitc537eb9e7c843a063841a740dd1ce48b46cad586 (patch)
treea63f88f2c9ac6cf300355f3766b77b496e574884
parentf0f62f3dfbb593b64fdc580ecf8c1c8e9253d344 (diff)
downloadATCD-c537eb9e7c843a063841a740dd1ce48b46cad586.tar.gz
ChangeLogTag:Thu Aug 02 20:39:19 2001 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a9
-rw-r--r--TAO/tao/Stub.h2
2 files changed, 10 insertions, 1 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index c048713b573..daef2347e4c 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,12 @@
+Thu Aug 02 20:39:19 2001 Ossama Othman <ossama@uci.edu>
+
+ * tao/Stub.h (TAO_Exception_Data):
+
+ The "id" member should be "const char *" not "char *". Fixes a
+ warning exhibited by some strict compilers (e.g. g++ with
+ "-pedantic" flag enabled). Conversion from a string constant to
+ a "char *" is deprecated.
+
Thu Aug 2 17:21:27 2001 Ossama Othman <ossama@uci.edu>
* tests/Makefile:
diff --git a/TAO/tao/Stub.h b/TAO/tao/Stub.h
index 9643bd172c1..b70c359eade 100644
--- a/TAO/tao/Stub.h
+++ b/TAO/tao/Stub.h
@@ -74,7 +74,7 @@ struct TAO_Exception_Data
// for the exception as well as a static function pointer that
// does the job of memory allocation.
- char *id;
+ const char *id;
// Repository id of the exception.
TAO_Exception_Alloc alloc;