diff options
author | David Tardon <dtardon@redhat.com> | 2011-02-07 17:13:07 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-02-07 17:13:07 +0100 |
commit | 35c46ba74bf2eefc5fc50587ef8c637369efdd2b (patch) | |
tree | c35ec750f5cd9760ae15fda103de2aa92ae9104e | |
parent | 67b54e7dc3c510fb2ef5eb2f2560632ff2944c88 (diff) |
add (pre|post)extstl.h around cppunit headers
-rw-r--r-- | sal/qa/rtl/strings/test_oustring_compare.cxx | 6 | ||||
-rw-r--r-- | sal/qa/rtl/strings/test_oustring_convert.cxx | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/sal/qa/rtl/strings/test_oustring_compare.cxx b/sal/qa/rtl/strings/test_oustring_compare.cxx index 60423ce91..e2c620321 100644 --- a/sal/qa/rtl/strings/test_oustring_compare.cxx +++ b/sal/qa/rtl/strings/test_oustring_compare.cxx @@ -43,9 +43,9 @@ class Compare: public CppUnit::TestFixture private: void equalsIgnoreAsciiCaseAscii(); - CPPUNIT_TEST_SUITE(Compare); - CPPUNIT_TEST(equalsIgnoreAsciiCaseAscii); - CPPUNIT_TEST_SUITE_END(); +CPPUNIT_TEST_SUITE(Compare); +CPPUNIT_TEST(equalsIgnoreAsciiCaseAscii); +CPPUNIT_TEST_SUITE_END(); }; } } diff --git a/sal/qa/rtl/strings/test_oustring_convert.cxx b/sal/qa/rtl/strings/test_oustring_convert.cxx index d1d5d4ad1..6b7bc7a4e 100644 --- a/sal/qa/rtl/strings/test_oustring_convert.cxx +++ b/sal/qa/rtl/strings/test_oustring_convert.cxx @@ -29,8 +29,10 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sal.hxx" +#include "preextstl.h" #include <cppunit/TestFixture.h> #include <cppunit/extensions/HelperMacros.h> +#include "postextstl.h" #include "rtl/strbuf.hxx" #include "rtl/string.hxx" #include "rtl/ustring.hxx" |