From d7b46ef1cf69c9fe5c4c36958ca5d5b40de8cf8d Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sat, 24 Nov 2018 17:41:50 +0100 Subject: Remove obsolete GCC version checks ...after "Bump (Linux) GCC baseline to 7.0.0". (In some cases, those checks now need to check for __clang__, which was implicitly covered in the past by Clang consistently reporting to be GCC 4.2.1.) Change-Id: I860fef8c4ca41c22a7541f0fb2d34b37d1d69bed Reviewed-on: https://gerrit.libreoffice.org/63952 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- cppu/qa/cppumaker/test_cppumaker.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cppu/qa') diff --git a/cppu/qa/cppumaker/test_cppumaker.cxx b/cppu/qa/cppumaker/test_cppumaker.cxx index e73a502333f8..cc310188b105 100644 --- a/cppu/qa/cppumaker/test_cppumaker.cxx +++ b/cppu/qa/cppumaker/test_cppumaker.cxx @@ -444,7 +444,7 @@ void Test::testBigStruct() { CPPUNIT_ASSERT_EQUAL(static_cast< sal_Int32 >(0), guard.p->m23.getLength()); //This is a very platform specific test. -#if defined __GNUC__ && __GNUC__ >= 3 // see CPPU_GCC3_ALIGN +#if defined __GNUC__ // see CPPU_GCC3_ALIGN #if defined(LINUX) && (defined (X86_64) || defined(X86) || defined(PPC)) CPPUNIT_ASSERT_EQUAL( #if defined X86_64 || defined PPC -- cgit