diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-02-20 18:24:52 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-02-20 23:17:50 +0100 |
commit | 023ec0495e93deb1303f02ba53617b666b8c0687 (patch) | |
tree | b8d7ecc0480ba71132c26e0f0553d9e83d054bc7 | |
parent | c96855088af32849e0155e201dceb0e7c13ab05b (diff) |
Remove dead conditional
Clang 4 is no longer supported on Linux since
685aca47da835e80f34b295c5d6389df03d1a8c2 "Bump (Linux) Clang baseline to 5.0.2"
and Xcode 9 is no longer supported on macOS since
358146bbbd1b9775c12770fb5e497b6ec5adfc51 "Bump macOS build baseline to
Xcode 11.3 and macOS 10.14.4".
Change-Id: I7f82b703f6a1f1dcd2ae322363b1813a8c3be948
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89161
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | sw/qa/core/uwriter.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sw/qa/core/uwriter.cxx b/sw/qa/core/uwriter.cxx index 1d7c131c4d5a..079f7e311245 100644 --- a/sw/qa/core/uwriter.cxx +++ b/sw/qa/core/uwriter.cxx @@ -1462,16 +1462,9 @@ void SwDocTest::testTableAutoFormats() CPPUNIT_ASSERT( bool( pLoadAF->GetBoxFormat(0).GetLinebreak() == aLBreak ) ); //Get m_aRotateAngle CPPUNIT_ASSERT( bool( pLoadAF->GetBoxFormat(0).GetRotateAngle() == aRAngle ) ); -#if !((defined(__clang__) && __clang_major__ == 4 && __clang_minor__ == 0) \ - || (defined __APPLE__ && defined __clang__ \ - && defined __apple_build_version__ \ - && __apple_build_version__ >= 9000000 \ - && __apple_build_version__ <= 9000099)) - // Temporary fix for mysterious problem with Clang in F26 and Xcode 9 //Get m_aRotateMode //SvxRotateModeItem aRMode = aBoxAF.m_aRotateMode;GetRotateMode CPPUNIT_ASSERT( bool( pLoadAF->GetBoxFormat(0).GetRotateMode() == aSvxRotateModeItem ) ); -#endif //Get m_sNumFormatString CPPUNIT_ASSERT( bool( pLoadAF->GetBoxFormat(0).GetNumFormatString() == aNFString ) ); //Get m_eSysLanguage |