summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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))