summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog9
-rw-r--r--TAO/orbsvcs/examples/Notify/ThreadPool/Consumer.h4
-rw-r--r--TAO/orbsvcs/examples/Notify/ThreadPool/Consumer_Client.h4
-rw-r--r--TAO/orbsvcs/examples/Notify/ThreadPool/ORB_Objects.h4
-rw-r--r--TAO/orbsvcs/examples/Notify/ThreadPool/ORB_Run_Task.h4
-rw-r--r--TAO/orbsvcs/examples/Notify/ThreadPool/Supplier.h4
-rw-r--r--TAO/orbsvcs/examples/Notify/ThreadPool/Supplier_Client.h4
7 files changed, 21 insertions, 12 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 74d6c434d2d..cd583717ac5 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,12 @@
+Tue Jul 22 03:35:52 UTC 2003 Don Hinton <dhinton@dresystems.com>
+
+ * orbsvcs/examples/Notify/ThreadPool/Consumer.h:
+ * orbsvcs/examples/Notify/ThreadPool/Consumer_Client.h:
+ * orbsvcs/examples/Notify/ThreadPool/ORB_Objects.h:
+ * orbsvcs/examples/Notify/ThreadPool/ORB_Run_Task.h:
+ * orbsvcs/examples/Notify/ThreadPool/Supplier.h:
+ Fixed fuzz errors by adding "/**/" to the pre.h/post.h includes.
+
Mon Jul 21 22:57:54 UTC 2003 Don Hinton <dhinton@dresystems.com>
* CIAO/ciao/*.h:
diff --git a/TAO/orbsvcs/examples/Notify/ThreadPool/Consumer.h b/TAO/orbsvcs/examples/Notify/ThreadPool/Consumer.h
index d56f907173b..65f4240ac45 100644
--- a/TAO/orbsvcs/examples/Notify/ThreadPool/Consumer.h
+++ b/TAO/orbsvcs/examples/Notify/ThreadPool/Consumer.h
@@ -12,7 +12,7 @@
#ifndef TAO_Notify_CONSUMER_H
#define TAO_Notify_CONSUMER_H
-#include "ace/pre.h"
+#include /**/ "ace/pre.h"
#include "ORB_Objects.h"
#include "tao/RTCORBA/RTCORBA.h"
@@ -131,5 +131,5 @@ protected:
ACE_Time_Value delay_;
};
-#include "ace/post.h"
+#include /**/ "ace/post.h"
#endif /* TAO_Notify_CONSUMER_H */
diff --git a/TAO/orbsvcs/examples/Notify/ThreadPool/Consumer_Client.h b/TAO/orbsvcs/examples/Notify/ThreadPool/Consumer_Client.h
index eb88cf53111..fab9b7e49d2 100644
--- a/TAO/orbsvcs/examples/Notify/ThreadPool/Consumer_Client.h
+++ b/TAO/orbsvcs/examples/Notify/ThreadPool/Consumer_Client.h
@@ -11,7 +11,7 @@
#ifndef TAO_Notify_CONSUMER_CLIENT_H
#define TAO_Notify_CONSUMER_CLIENT_H
-#include "ace/pre.h"
+#include /**/ "ace/pre.h"
#include "ORB_Objects.h"
#include "ace/Task.h"
@@ -76,5 +76,5 @@ protected:
long delay_;
};
-#include "ace/post.h"
+#include /**/ "ace/post.h"
#endif /* TAO_Notify_CONSUMER_CLIENT_H */
diff --git a/TAO/orbsvcs/examples/Notify/ThreadPool/ORB_Objects.h b/TAO/orbsvcs/examples/Notify/ThreadPool/ORB_Objects.h
index 2d9de45a194..892f98dfd4a 100644
--- a/TAO/orbsvcs/examples/Notify/ThreadPool/ORB_Objects.h
+++ b/TAO/orbsvcs/examples/Notify/ThreadPool/ORB_Objects.h
@@ -11,7 +11,7 @@
#ifndef TAO_Notify_ORB_OBJECTS_H
#define TAO_Notify_ORB_OBJECTS_H
-#include "ace/pre.h"
+#include /**/ "ace/pre.h"
#include "tao/corba.h"
#include "tao/RTCORBA/RTCORBA.h"
@@ -52,5 +52,5 @@ public:
CosNaming::NamingContextExt_var naming_;
};
-#include "ace/post.h"
+#include /**/ "ace/post.h"
#endif /* TAO_Notify_ORB_OBJECTS_H */
diff --git a/TAO/orbsvcs/examples/Notify/ThreadPool/ORB_Run_Task.h b/TAO/orbsvcs/examples/Notify/ThreadPool/ORB_Run_Task.h
index 9be9f90501b..d427bee85e4 100644
--- a/TAO/orbsvcs/examples/Notify/ThreadPool/ORB_Run_Task.h
+++ b/TAO/orbsvcs/examples/Notify/ThreadPool/ORB_Run_Task.h
@@ -11,7 +11,7 @@
#ifndef TAO_Notify_ORB_RUN_TASK_H
#define TAO_Notify_ORB_RUN_TASK_H
-#include "ace/pre.h"
+#include /**/ "ace/pre.h"
#include "ORB_Objects.h"
#include "ace/Task.h"
@@ -40,5 +40,5 @@ private:
TAO_Notify_ORB_Objects orb_objects_;
};
-#include "ace/post.h"
+#include /**/ "ace/post.h"
#endif /* TAO_Notify_ORB_RUN_TASK_H */
diff --git a/TAO/orbsvcs/examples/Notify/ThreadPool/Supplier.h b/TAO/orbsvcs/examples/Notify/ThreadPool/Supplier.h
index 01d2bdf785c..2c2887d7e13 100644
--- a/TAO/orbsvcs/examples/Notify/ThreadPool/Supplier.h
+++ b/TAO/orbsvcs/examples/Notify/ThreadPool/Supplier.h
@@ -11,7 +11,7 @@
#ifndef TAO_Notify_SUPPLIER_H
#define TAO_Notify_SUPPLIER_H
-#include "ace/pre.h"
+#include /**/ "ace/pre.h"
#include "ORB_Objects.h"
#include "tao/RTCORBA/RTCORBA.h"
@@ -126,5 +126,5 @@ protected:
#pragma warning(pop)
#endif /* _MSC_VER */
-#include "ace/post.h"
+#include /**/ "ace/post.h"
#endif /* TAO_Notify_SUPPLIER_H */
diff --git a/TAO/orbsvcs/examples/Notify/ThreadPool/Supplier_Client.h b/TAO/orbsvcs/examples/Notify/ThreadPool/Supplier_Client.h
index cc5081476ea..af54850ce6e 100644
--- a/TAO/orbsvcs/examples/Notify/ThreadPool/Supplier_Client.h
+++ b/TAO/orbsvcs/examples/Notify/ThreadPool/Supplier_Client.h
@@ -11,7 +11,7 @@
#ifndef TAO_Notify_SUPPLIER_CLIENT_H
#define TAO_Notify_SUPPLIER_CLIENT_H
-#include "ace/pre.h"
+#include /**/ "ace/pre.h"
#include "ORB_Objects.h"
#include "ace/Task.h"
@@ -75,5 +75,5 @@ protected:
int max_events_;
};
-#include "ace/post.h"
+#include /**/ "ace/post.h"
#endif /* TAO_Notify_SUPPLIER_CLIENT_H */