summaryrefslogtreecommitdiff
path: root/examples/Bounded_Packet_Relay
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-04-19 19:07:21 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-04-19 19:07:21 +0000
commit7d0c9d97c7e0260666ba1692560bb16863f961a2 (patch)
treed88d9d6d1049dd6080aa70d8b5db6b649697a13e /examples/Bounded_Packet_Relay
parentf281873182f14683d273079adc1231b2d245d8d7 (diff)
downloadATCD-7d0c9d97c7e0260666ba1692560bb16863f961a2.tar.gz
ChangeLogTag:Fri Apr 19 12:05:42 2002 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'examples/Bounded_Packet_Relay')
-rw-r--r--examples/Bounded_Packet_Relay/bpr_thread.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/examples/Bounded_Packet_Relay/bpr_thread.cpp b/examples/Bounded_Packet_Relay/bpr_thread.cpp
index 7721f0dbd81..b0f1ac930e1 100644
--- a/examples/Bounded_Packet_Relay/bpr_thread.cpp
+++ b/examples/Bounded_Packet_Relay/bpr_thread.cpp
@@ -23,10 +23,22 @@
//
// ============================================================================
+// The following #pragma is needed to disable a warning that occurs
+// in MSVC 6 due to the overly long debugging symbols generated for
+// the std::auto_ptr<Timer_Queue_Test_Driver<...> > template
+// instance used by some of the methods in this file.
+#ifdef _MSC_VER
+# pragma warning(disable: 4786) /* identifier was truncated to '255'
+ characters in the browser
+ information */
+#endif /* _MSC_VER */
+
#include "ace/Auto_Ptr.h"
#include "Thread_Bounded_Packet_Relay.h"
-ACE_RCSID(Bounded_Packet_Relay, bpr_thread, "$Id$")
+ACE_RCSID (Bounded_Packet_Relay,
+ bpr_thread,
+ "$Id$")
typedef Bounded_Packet_Relay_Driver<Thread_Timer_Queue>
THREAD_BOUNDED_PACKET_RELAY_DRIVER;