diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-21 09:48:00 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-21 10:00:35 +0200 |
commit | bc492623ad094197db13cb55c7e6cce35962f860 (patch) | |
tree | 81792ee25ec04e3c2eaa38cabec2c8317c91798e /sal | |
parent | 2ee765872f07f1cb0e2c99f22b48808476089cf5 (diff) |
Remove redundant checks
(that started to cause loplugin:salbool after
13758a3d154e8e450fdfe8bcdeb6b3a03996c53a "SourceManager::isMacroArgExpansion has
only one param in older Clang")
Change-Id: Ibbdf4552d81385cf952e2d47d1fe23daf78824b5
Diffstat (limited to 'sal')
-rw-r--r-- | sal/qa/rtl/strings/test_strings_valuex.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sal/qa/rtl/strings/test_strings_valuex.cxx b/sal/qa/rtl/strings/test_strings_valuex.cxx index 83948ce881b1..95ebb8f0adc0 100644 --- a/sal/qa/rtl/strings/test_strings_valuex.cxx +++ b/sal/qa/rtl/strings/test_strings_valuex.cxx @@ -43,9 +43,7 @@ namespace { template< typename T > void testBoolean() { CPPUNIT_ASSERT_EQUAL( T( "false" ), T::boolean( false ) ); - CPPUNIT_ASSERT_EQUAL( T( "false" ), T::boolean( sal_False ) ); CPPUNIT_ASSERT_EQUAL( T( "true" ), T::boolean( true ) ); - CPPUNIT_ASSERT_EQUAL( T( "true" ), T::boolean( sal_True ) ); } } |