GCC trunk already calls it C++23

...since
<https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=78739c2df788ee5c868d998a6333d453317d8711>
"c++: Add support for -std=c++23"

Change-Id: I28e345b4130f04eb37a1acb736a4ccbf2f577451
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112392
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
diff --git a/configure.ac b/configure.ac
index 90b0cf0..fece7f7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7055,7 +7055,7 @@ if test "$COM" = MSC -a "$COM_IS_CLANG" != TRUE; then
elif test "$GCC" = "yes" -o "$COM_IS_CLANG" = TRUE; then
    my_flags='-std=c++17 -std=c++1z'
    if test "$with_latest_c__" = yes; then
        my_flags="-std=c++2b -std=c++20 -std=c++2a $my_flags"
        my_flags="-std=c++23 -std=c++2b -std=c++20 -std=c++2a $my_flags"
    fi
    for flag in $my_flags; do
        if test "$COM" = MSC; then