summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-08-11 14:04:01 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-08-11 14:04:01 +0000
commit31ef4afcd4353244b970cb734cc4e1fa15476dda (patch)
tree53f4e0e083cd65356d225d3a4f46b5b25cf1719c
parentaa5d73d936cfcfd6a37d13c62cdff8437d948c43 (diff)
downloadATCD-31ef4afcd4353244b970cb734cc4e1fa15476dda.tar.gz
ChangeLogTag: Mon Aug 11 08:56:42 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog_ref9
-rw-r--r--TAO/tao/ClientRequestInterceptor_Adapter.h4
2 files changed, 11 insertions, 2 deletions
diff --git a/TAO/ChangeLog_ref b/TAO/ChangeLog_ref
index 7de0263247b..400652d76e9 100644
--- a/TAO/ChangeLog_ref
+++ b/TAO/ChangeLog_ref
@@ -1,3 +1,12 @@
+Mon Aug 11 08:56:42 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * tao/ClientRequestInterceptor_Adapter.h:
+
+ Moved #include of Interceptor_List.h up to be above the check
+ for TAO_HAS_INTERCEPTORS. Otherewise the only include before that
+ line in config-all.h, and so TAO_HAS_INTERCEPTORS is not yet
+ defined.
+
Sun Aug 10 22:40:49 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tao/ClientRequestInfo_i.h:
diff --git a/TAO/tao/ClientRequestInterceptor_Adapter.h b/TAO/tao/ClientRequestInterceptor_Adapter.h
index 4375757f185..c4446eeb95b 100644
--- a/TAO/tao/ClientRequestInterceptor_Adapter.h
+++ b/TAO/tao/ClientRequestInterceptor_Adapter.h
@@ -27,10 +27,10 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
-#if TAO_HAS_INTERCEPTORS == 1
-
#include "Interceptor_List.h"
+#if TAO_HAS_INTERCEPTORS == 1
+
class TAO_ClientRequestInfo;
class TAO_ClientRequestInfo_i;