summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-01-27 06:28:52 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-01-27 06:28:52 +0000
commit7e9ee324e768de64eda61eb7aac4f5bdbcd19bfb (patch)
tree0503fc408318c5fbaa74aa3d72a8da2538347af8 /TAO
parentabbc6709d98aee201571748f071fb7ccc2ae89ea (diff)
downloadATCD-7e9ee324e768de64eda61eb7aac4f5bdbcd19bfb.tar.gz
ChangeLogTag:Fri Jan 26 22:24:56 2001 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a9
-rw-r--r--TAO/tao/Default_Protocols_Hooks.cpp4
-rw-r--r--TAO/tao/RT_Protocols_Hooks.cpp12
3 files changed, 19 insertions, 6 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 8843cf763b8..7b8b0139ea5 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,12 @@
+Fri Jan 26 22:24:56 2001 Ossama Othman <ossama@uci.edu>
+
+ * tao/Default_Protocols_Hooks.cpp (ACE_RCSID):
+ * tao/RT_Protocols_Hooks.cpp (ACE_RCSID):
+
+ Removed trailing semi-colon. The ACE_RCSID macro already places
+ trailing semi-colons in the expanded text. This change fixes a
+ warning about the extra semi-colon.
+
Fri Jan 26 22:13:16 2001 Ossama Othman <ossama@uci.edu>
* orbsvcs/tests/InterfaceRepo/Persistence_Test/Ptest.cpp (run):
diff --git a/TAO/tao/Default_Protocols_Hooks.cpp b/TAO/tao/Default_Protocols_Hooks.cpp
index 20182e6af3e..e33a4d4e015 100644
--- a/TAO/tao/Default_Protocols_Hooks.cpp
+++ b/TAO/tao/Default_Protocols_Hooks.cpp
@@ -7,7 +7,9 @@
# include "Default_Protocols_Hooks.i"
#endif /* ! __ACE_INLINE__ */
-ACE_RCSID(tao, Default_Protocols_Hooks, "$Id$");
+ACE_RCSID (tao,
+ Default_Protocols_Hooks,
+ "$Id$")
/// constructor
TAO_Default_Protocols_Hooks::TAO_Default_Protocols_Hooks (void)
diff --git a/TAO/tao/RT_Protocols_Hooks.cpp b/TAO/tao/RT_Protocols_Hooks.cpp
index b062d2f18f4..e9befd132e0 100644
--- a/TAO/tao/RT_Protocols_Hooks.cpp
+++ b/TAO/tao/RT_Protocols_Hooks.cpp
@@ -3,14 +3,16 @@
#include "RT_Protocols_Hooks.h"
#include "RT_Policy_i.h"
-#include "tao/Invocation.h"
-#include "tao/Stub.h"
-#include "tao/MProfile.h"
-#include "tao/Priority_Mapping_Manager.h"
+#include "Invocation.h"
+#include "Stub.h"
+#include "MProfile.h"
+#include "Priority_Mapping_Manager.h"
#include "ace/Dynamic_Service.h"
-ACE_RCSID(tao, RT_Protocols_Hooks, "$Id$");
+ACE_RCSID (tao,
+ RT_Protocols_Hooks,
+ "$Id$")
#if (TAO_HAS_RT_CORBA == 1)