summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2004-07-02 16:06:09 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2004-07-02 16:06:09 +0000
commit83d908791c02265d7a8ff18ca0e84b92890933a7 (patch)
tree6885acd5b359550906971fb6759fe10da3f65e2e
parent4d3333afa755910b9aa59f3906da49984cf5edcd (diff)
downloadATCD-83d908791c02265d7a8ff18ca0e84b92890933a7.tar.gz
ChangeLogTag:Fri Jul 2 10:42:00 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
-rw-r--r--ACE-INSTALL.html10
-rw-r--r--ChangeLog11
-rw-r--r--THANKS2
-rw-r--r--ace/Based_Pointer_T.inl2
4 files changed, 18 insertions, 7 deletions
diff --git a/ACE-INSTALL.html b/ACE-INSTALL.html
index 36ddaf193c5..e55a04e65bb 100644
--- a/ACE-INSTALL.html
+++ b/ACE-INSTALL.html
@@ -190,11 +190,11 @@ of ACE (TAO and CIAO) includes GNUmakefiles for UNIX platforms, VC6
project files, and VC71 solution files. If it is necessary to generate
files for build tools for other compilers such as Visual Age for IBM,
and Windows CE users have to run MPC themselves to generate the
-appropriate files. Please see <A HREF="MPC/USAGE">
-USAGE </A>, <A HREF="MPC/README"> README </A> and <A
-HREF="bin/MakeProjectCreator/README"> REAME for ACE
-</A>files for details. The options that have been used to generate the
-above build files can be found in <A
+appropriate files. Please see <A HREF="MPC/USAGE"> USAGE </A>, <A
+HREF="MPC/README"> README </A> and <A
+HREF="bin/MakeProjectCreator/README"> README for ACE </A>files for
+details. The options that have been used to generate the above build
+files can be found in <A
HREF="bin/MakeProjectCreator/config/global.features">
global.features</A> file.
diff --git a/ChangeLog b/ChangeLog
index 6e6eefa86d8..a853ae179f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+Fri Jul 2 10:42:00 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
+
+ * ace/Based_Pointer_T.inl (operator->): Replaced the use of
+ a C-style cast with a reinterpret cast. Thanks to
+ Rick Ohnemus <rick.ohnemus@systemware.com> for this fix, which
+ closes bugid 1866.
+
+ * ACE-INSTALL.html (HREF): Fixed a typo. Thanks to
+ Rick Ohnemus <rick.ohnemus@systemware.com> for this fix, which
+ closes bugid 1867.
+
Thu Jul 1 17:03:40 2004 Jaiganesh B <jai@dre.vanderbilt.edu>
* bin/MakeProjectCreator/config/ciao_deployment_svnt.mpb:
diff --git a/THANKS b/THANKS
index bc7d6842729..4530040fd07 100644
--- a/THANKS
+++ b/THANKS
@@ -898,7 +898,7 @@ Iain Melville <Iain dot Melville at opentrade dot co dot uk>
Daniel Lang <dl at leo dot org>
Chris Leishman <chris_leishman at freeonline dot com dot au>
Klemen Zagar <klemen dot zagar at irj dot si>
-Rick Ohnemus <rjohnemus at systemware-inc dot com>
+Rick Ohnemus <rjohnemus at systemware dot com>
Adamo, Vince <adamo at vignette dot com>
Defang Zhou <dzhou at inktomi dot com>
Dave Zumbro <zumbro_d at ociweb dot com>
diff --git a/ace/Based_Pointer_T.inl b/ace/Based_Pointer_T.inl
index 28272f8a861..b45e14073e3 100644
--- a/ace/Based_Pointer_T.inl
+++ b/ace/Based_Pointer_T.inl
@@ -8,7 +8,7 @@ template <class CONCRETE> ACE_INLINE CONCRETE *
ACE_Based_Pointer<CONCRETE>::operator->(void)
{
ACE_TRACE ("ACE_Based_Pointer<CONCRETE>::operator->");
- return (CONCRETE *)(ACE_COMPUTE_BASED_POINTER (this));
+ return reinterpret_cast<CONCRETE *> (ACE_COMPUTE_BASED_POINTER (this));
}
template <class CONCRETE> ACE_INLINE void