configure.ac |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 4179056285395319d5fd5af77090359fc8b874a8
Author:     Stephan Bergmann <stephan.bergm...@allotropia.de>
AuthorDate: Sun Feb 11 13:10:21 2024 +0100
Commit:     Stephan Bergmann <stephan.bergm...@allotropia.de>
CommitDate: Sun Feb 11 15:26:04 2024 +0100

    Fix quoting of [ ]
    
    Change-Id: I57c96fe9f72794abb4f49f63735c075a4647bd23
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163228
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <stephan.bergm...@allotropia.de>

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"); }

Reply via email to