summaryrefslogtreecommitdiff
path: root/sal/inc/sal/precppunit.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/inc/sal/precppunit.hxx')
-rw-r--r--sal/inc/sal/precppunit.hxx13
1 files changed, 12 insertions, 1 deletions
diff --git a/sal/inc/sal/precppunit.hxx b/sal/inc/sal/precppunit.hxx
index a0f7c942f27c..31536c30df7e 100644
--- a/sal/inc/sal/precppunit.hxx
+++ b/sal/inc/sal/precppunit.hxx
@@ -29,11 +29,22 @@
#define INCLUDED_SAL_PRECPPUNIT_HXX
#include "sal/config.h"
-
#include "sal/types.h"
// Overwrite the way CppUnit test plug-ins export the test function, adapting it
// to OOo's symbol visibility framework:
#define CPPUNIT_PLUGIN_EXPORT extern "C" SAL_DLLPUBLIC_EXPORT
+//std::auto_ptr is deprecated in c++0x, but we're stuck with them in cppunit
+//So push and pop -Wdeprecated-declarations for gcc
+#define SAL_CPPUNIT_TEST_SUITE(X) \
+SAL_WNODEPRECATED_DECLARATIONS_PUSH \
+CPPUNIT_TEST_SUITE(X)
+
+#define SAL_CPPUNIT_TEST_SUITE_END(X) \
+CPPUNIT_TEST_SUITE_END(X) \
+; \
+SAL_WNODEPRECATED_DECLARATIONS_POP \
+typedef int SalCppUnitDummyTypedefForSemiColonEnding__ \
+
#endif