From 4179056285395319d5fd5af77090359fc8b874a8 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sun, 11 Feb 2024 13:10:21 +0100 Subject: [PATCH] Fix quoting of [ ] Change-Id: I57c96fe9f72794abb4f49f63735c075a4647bd23 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163228 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 721851c52d87..e6c35380e91d 100644 --- a/configure.ac +++ b/configure.ac @@ -14767,13 +14767,13 @@ AC_RUN_IFELSE([AC_LANG_PROGRAM([ auto s5 = S5().f(); struct S6 { - consteval S6(char const (&lit)[2]) { - buf[0] = lit[0]; - buf[1] = lit[1]; + consteval S6(char const (&lit)[[2]]) { + buf[[0]] = lit[[0]]; + buf[[1]] = lit[[1]]; } union { int x; - char buf[2]; + char buf[[2]]; }; }; void f6() { S6("a"); }