summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--salhelper/qa/test_api.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/salhelper/qa/test_api.cxx b/salhelper/qa/test_api.cxx
index 5892b2c8338a..f016a88d55db 100644
--- a/salhelper/qa/test_api.cxx
+++ b/salhelper/qa/test_api.cxx
@@ -120,6 +120,13 @@ void Test::testCondition() {
CPPUNIT_ASSERT(typeid (salhelper::Condition *) == getConditionTypeInfo());
}
+#ifdef _MSC_VER
+// MSVC 2012 warns about the "p" being unused
+#pragma warning (push, 1)
+#pragma warning (disable: 4189)
+#endif
+
+
void Test::testConditionModifier() {
salhelper::ConditionModifier * p = 0;
CPPUNIT_ASSERT(typeid (*p) == typeid (salhelper::ConditionModifier));
@@ -184,6 +191,10 @@ void Test::testORealDynamicLoader() {
== getORealDynamicLoaderTypeInfo());
}
+#ifdef _MSC_VER
+#pragma warning (pop)
+#endif
+
void Test::testSimpleReferenceObject() {
salhelper::SimpleReferenceObject * p = new DerivedSimpleReferenceObject;
try {