summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2001-03-04 17:29:59 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2001-03-04 17:29:59 +0000
commitccbd89c0bc8ee94fec70a6d5bf749c07debdaeca (patch)
tree172bafe92925725de49a5d2be52ef65f4da9264d
parentaf0deddd0fd7ecd541b8b172ee10e3e7994c5d52 (diff)
downloadATCD-ccbd89c0bc8ee94fec70a6d5bf749c07debdaeca.tar.gz
ChangeLogTag:Sun Mar 04 09:12:40 2001 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a11
-rw-r--r--TAO/tao/IFR_Client/InterfaceC.cpp7
2 files changed, 17 insertions, 1 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 8cd56f85085..9a571a6d8c7 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,14 @@
+Sun Mar 04 09:12:40 2001 Ossama Othman <ossama@uci.edu>
+
+ * tao/IFR_Client/InterfaceC.cpp:
+
+ Moved inclusion of the `tao/PortableInterceptor.h' header
+ outside of the "TAO_HAS_INTERCEPTORS" protected block. This
+ header must remain visible since it contains the
+ "TAO_INTERCEPTOR" macros. Note that this won't cause problems
+ when portable interceptor support is disabled since those macros
+ are always visible, too.
+
Sun Mar 4 11:06:25 2001 Frank Hunleth <fhunleth@cs.wustl.edu>
* examples/PluggableUDP/README:
diff --git a/TAO/tao/IFR_Client/InterfaceC.cpp b/TAO/tao/IFR_Client/InterfaceC.cpp
index e319831373c..5aa837936cc 100644
--- a/TAO/tao/IFR_Client/InterfaceC.cpp
+++ b/TAO/tao/IFR_Client/InterfaceC.cpp
@@ -23,9 +23,14 @@
#include "tao/Stub.h"
#include "tao/Invocation.h"
+// The Following header must remain visible since it contains the
+// "TAO_INTERCEPTOR" macros. Note that this won't cause problems when
+// portable interceptor support is disabled since those macros are
+// always visible, too.
+#include "tao/PortableInterceptor.h"
+
#if TAO_HAS_INTERCEPTORS == 1
#include "tao/RequestInfo_Util.h"
-#include "tao/PortableInterceptor.h"
#endif /* TAO_HAS_INTERCEPTORS == 1 */
#if defined (__BORLANDC__)