summaryrefslogtreecommitdiff
path: root/o3tl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2023-09-24 11:57:35 +0300
committerStephan Bergmann <sbergman@redhat.com>2023-09-24 17:31:16 +0200
commit72da78be20ebe1cd62ba7a5ac6e29b9d40f00f15 (patch)
tree4087de070b982d2bb01dfe1a231a6258ef874a08 /o3tl
parent23de37d22c9fecbcffdcf4eb02c926f0f9403d5e (diff)
Drop some newly obsolete __GNUC__ version checks
...after 6ef2d358ac053ce0f6de9cf0f8f25e8bae66d441 "Adapt Clang and GCC minimum version checks" Change-Id: I5f3bcda2ce8e0e093af3bdd9d2cca741a5b95306 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157202 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'o3tl')
-rw-r--r--o3tl/qa/test-string_view.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/o3tl/qa/test-string_view.cxx b/o3tl/qa/test-string_view.cxx
index bbe5cbf0eddc..c534adbd945f 100644
--- a/o3tl/qa/test-string_view.cxx
+++ b/o3tl/qa/test-string_view.cxx
@@ -20,9 +20,6 @@
#include <rtl/string.hxx>
#include <rtl/ustring.hxx>
-// gcc 11.2.0 triggers a spurious -Werror=stringop-overread
-#if !(defined __GNUC__ && __GNUC__ == 11 && __GNUC_MINOR__ == 2)
-
template <>
inline std::string
CppUnit::assertion_traits<std::u16string_view>::toString(std::u16string_view const& x)
@@ -752,6 +749,5 @@ private:
CPPUNIT_TEST_SUITE_REGISTRATION(Test);
}
-#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */