summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-02 22:50:37 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-02 22:50:37 +0000
commitbdd0714640d3326c642c7e48122dd2f916615405 (patch)
treebd2858fe3258f0fd17039d0d5b8a932eb6a90977
parentb1690c72c168e5d9ecfeee5ae2198b7a790dd68e (diff)
downloadATCD-bdd0714640d3326c642c7e48122dd2f916615405.tar.gz
ChangeLogTag:Wed Jul 2 22:48:18 UTC 2003 Don Hinton <dhinton@dresystems.com>
-rw-r--r--ChangeLog8
-rw-r--r--ace/config-all.h2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4895bdfabb1..ec03440eb9f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Wed Jul 2 22:48:18 UTC 2003 Don Hinton <dhinton@dresystems.com>
+
+ * ace/config-all.h/
+ Rolled back Wed Jul 2 22:17:15 UTC 2003 Don Hinton
+ <dhinton@dresystems.com> temporarily, since it is defined
+ inconsistenly and compilation will fail if ACE_HAS_ANSI_CASTS is
+ just defined and not defined as a number.
+
Wed Jul 2 22:17:15 UTC 2003 Don Hinton <dhinton@dresystems.com>
* ace/config-all.h/
diff --git a/ace/config-all.h b/ace/config-all.h
index 77ec2510075..5266c83f42e 100644
--- a/ace/config-all.h
+++ b/ace/config-all.h
@@ -246,7 +246,7 @@
// *_cast<> operators
// ============================================================================
-# if defined (ACE_HAS_ANSI_CASTS) && ACE_HAS_ANSI_CASTS != 0
+# if defined (ACE_HAS_ANSI_CASTS)
# define ACE_sap_any_cast(TYPE) reinterpret_cast<TYPE> (const_cast<ACE_Addr &> (ACE_Addr::sap_any))