summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_3215_Regression/Hello.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Bug_3215_Regression/Hello.h')
-rw-r--r--TAO/orbsvcs/tests/Bug_3215_Regression/Hello.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/Bug_3215_Regression/Hello.h b/TAO/orbsvcs/tests/Bug_3215_Regression/Hello.h
index 047a405a5fa..44a4638aaf5 100644
--- a/TAO/orbsvcs/tests/Bug_3215_Regression/Hello.h
+++ b/TAO/orbsvcs/tests/Bug_3215_Regression/Hello.h
@@ -8,6 +8,11 @@
#include "TestS.h"
+#if defined (_MSC_VER)
+# pragma warning(push)
+# pragma warning (disable:4250)
+#endif /* _MSC_VER */
+
/// Implement the Test::Hello interface
class Hello
: public virtual POA_Test::Hello
@@ -29,5 +34,9 @@ private:
CORBA::ORB_var orb_;
};
+#if defined(_MSC_VER)
+# pragma warning(pop)
+#endif /* _MSC_VER */
+
#include /**/ "ace/post.h"
#endif /* HELLO_H */