summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2017-08-08 18:13:07 +0200
committerGitHub <noreply@github.com>2017-08-08 18:13:07 +0200
commitce3a3daedf345bb04bc474ff7ae0cbe6abd8820e (patch)
treec46581907d26e2749bf585589ad314a5fdd647bf
parent61850ca09b5907c58f06cb91599e581d93f1c000 (diff)
parenta8c3aef792d4a3c0780202425f84af3e72f68ff6 (diff)
downloadATCD-ce3a3daedf345bb04bc474ff7ae0cbe6abd8820e.tar.gz
Merge pull request #472 from jwillemsen/jwi-bcc32rtfactory
Suppress warning 8022 with bcc32
-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"