-Werror,-Wundef (clang-cl)

Change-Id: Ife97d1645c0ef4684a00f943c649b19623290d7d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127299
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
Stephan Bergmann
2021-12-22 09:27:33 +01:00
parent cd057f55ba
commit e88fbc883f

View File

@@ -22,7 +22,7 @@
#include <rtl/ustring.hxx>
// gcc 11.2.0 triggers a spurious -Werror=stringop-overread
#if !(__GNUC__ == 11 && __GNUC_MINOR__ == 2)
#if !(defined __GNUC__ && __GNUC__ == 11 && __GNUC_MINOR__ == 2)
namespace CppUnit
{