summaryrefslogtreecommitdiff
path: root/TAO/CIAO/performance-tests/Benchmark/LatencyTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/performance-tests/Benchmark/LatencyTest.h')
-rw-r--r--TAO/CIAO/performance-tests/Benchmark/LatencyTest.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/TAO/CIAO/performance-tests/Benchmark/LatencyTest.h b/TAO/CIAO/performance-tests/Benchmark/LatencyTest.h
index b4b73b1ae84..ad066166e6b 100644
--- a/TAO/CIAO/performance-tests/Benchmark/LatencyTest.h
+++ b/TAO/CIAO/performance-tests/Benchmark/LatencyTest.h
@@ -8,6 +8,11 @@
#include "BenchmarkS.h"
+#if defined (_MSC_VER)
+# pragma warning(push)
+# pragma warning (disable:4250)
+#endif /* _MSC_VER */
+
/// Implement the Test::LatencyTest interface
class LatencyTest
: public virtual POA_Benchmark::LatencyTest
@@ -26,9 +31,13 @@ class LatencyTest
private:
/// Use an ORB reference to conver strings to objects and shutdown
- /// the application.
- CORBA::ORB_var orb_;
+ /// the application.
+ CORBA::ORB_var orb_;
};
+#if defined(_MSC_VER)
+# pragma warning(pop)
+#endif /* _MSC_VER */
+
#include /**/ "ace/post.h"
#endif /* LATENCYTEST_H */