summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2017-08-08 18:06:18 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2017-08-08 18:06:18 +0200
commita8c3aef792d4a3c0780202425f84af3e72f68ff6 (patch)
treef03799c69c040dc6c48ad7b06e82f89de7b79a88
parentbe046950dc232d1b5415dbd6cd1a88396ae14508 (diff)
downloadATCD-a8c3aef792d4a3c0780202425f84af3e72f68ff6.tar.gz
Suppress warning 8022 with bcc32
* TAO/orbsvcs/orbsvcs/Notify/RT_Factory.h:
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/RT_Factory.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/RT_Factory.h b/TAO/orbsvcs/orbsvcs/Notify/RT_Factory.h
index 6f23486e112..2458f1e7e22 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/RT_Factory.h
+++ b/TAO/orbsvcs/orbsvcs/Notify/RT_Factory.h
@@ -18,6 +18,10 @@
#include "orbsvcs/Notify/Default_Factory.h"
+#if defined (__BORLANDC__) && (__BORLANDC__ >= 0x660) && (__BORLANDC__ <= 0x730)
+# pragma option push -w-8022
+#endif
+
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
/**
@@ -46,6 +50,10 @@ public:
TAO_END_VERSIONED_NAMESPACE_DECL
+#if defined (__BORLANDC__) && (__BORLANDC__ >= 0x660) && (__BORLANDC__ <= 0x730)
+# pragma option pop
+#endif
+
ACE_FACTORY_DECLARE (TAO_RT_Notify, TAO_Notify_RT_Factory)
#include /**/ "ace/post.h"