summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a8
-rw-r--r--TAO/examples/PluggableUDP/DIOP/DIOP_Connector.cpp7
-rw-r--r--TAO/examples/PluggableUDP/DIOP/DIOP_Connector.h1
3 files changed, 12 insertions, 4 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index a6e5ba632de..cd839d5e87b 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,11 @@
+Sat Apr 22 14:00:00 2001 Michael Kircher <Michael.Kircher@mchp.siemens.de>
+
+ * examples/PluggableUDP/DIOP/DIOP_Connector.cpp:
+ * examples/PluggableUDP/DIOP/DIOP_Connector.h:
+
+ Fixed a compiler warning about pragma once by reordering
+ includes.
+
Sat Apr 21 19:33:43 2001 Carlos O'Ryan <coryan@uci.edu>
* tao/Environment.h:
diff --git a/TAO/examples/PluggableUDP/DIOP/DIOP_Connector.cpp b/TAO/examples/PluggableUDP/DIOP/DIOP_Connector.cpp
index 1efdefbdb1c..0b74c29d6a6 100644
--- a/TAO/examples/PluggableUDP/DIOP/DIOP_Connector.cpp
+++ b/TAO/examples/PluggableUDP/DIOP/DIOP_Connector.cpp
@@ -1,17 +1,16 @@
// This may look like C, but it's really -*- C++ -*-
// $Id$
+#include "ace/Connector.h"
-
-#include "DIOP_Connector.h"
-#include "DIOP_Profile.h"
#include "tao/debug.h"
#include "tao/ORB_Core.h"
#include "tao/Environment.h"
#include "tao/Base_Transport_Property.h"
#include "tao/Protocols_Hooks.h"
-#include "ace/Connector.h"
+#include "DIOP_Connector.h"
+#include "DIOP_Profile.h"
ACE_RCSID (DIOP,
diff --git a/TAO/examples/PluggableUDP/DIOP/DIOP_Connector.h b/TAO/examples/PluggableUDP/DIOP/DIOP_Connector.h
index 76c8d9ffc71..0c1343ed9be 100644
--- a/TAO/examples/PluggableUDP/DIOP/DIOP_Connector.h
+++ b/TAO/examples/PluggableUDP/DIOP/DIOP_Connector.h
@@ -24,6 +24,7 @@
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/Pluggable.h"
+
#include "DIOP_Connection_Handler.h"
#include "diop_export.h"