summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-10-17 02:27:36 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-10-17 02:27:36 +0000
commita1deb82c52f4af0dff11aafda638cca29ffb6f83 (patch)
tree681e1ee00473e312264cac77f77d5b2579e3396f
parent52e05c14fe870356b7a06e8712b6d7b9db02597a (diff)
downloadATCD-a1deb82c52f4af0dff11aafda638cca29ffb6f83.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98b4
-rw-r--r--TAO/ChangeLog-98c4
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog-98b b/ChangeLog-98b
index 0849efd0e85..43df7730b48 100644
--- a/ChangeLog-98b
+++ b/ChangeLog-98b
@@ -1,5 +1,9 @@
Fri Oct 16 15:45:08 1998 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+ * ace: Replaced all #if !defined (ACE_FOO_H) with #ifndef
+ ACE_FOO_H since many C++ preprocessors can recognize this idiom
+ and optimize for it.
+
* tests/Upgradable_RW_Test.cpp: Revised the programming style ;-).
* tests/Map_Manager_Test.cpp: Replaced all uses of postfix ++
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index 7755b1d7c84..b175133a046 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,5 +1,9 @@
Fri Oct 16 15:48:48 1998 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+ * tao: Replaced all #if !defined (TAO_FOO_H) with #ifndef
+ TAO_FOO_H since many C++ preprocessors can recognize this idiom
+ and optimize for it.
+
* tao/POA.cpp: Changed from operator++ to ++operator to be more
efficient. Thanks to Irfan for suggesting this change.