summaryrefslogtreecommitdiffstats
path: root/gl/m4/std-gnu11.m4
diff options
context:
space:
mode:
Diffstat (limited to 'gl/m4/std-gnu11.m4')
-rw-r--r--gl/m4/std-gnu11.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/gl/m4/std-gnu11.m4 b/gl/m4/std-gnu11.m4
index 762764e0..0868a43a 100644
--- a/gl/m4/std-gnu11.m4
+++ b/gl/m4/std-gnu11.m4
@@ -16,7 +16,7 @@ m4_ifndef([_AC_C_C23_OPTIONS], [
16m4_version_prereq([2.70], [], [ 16m4_version_prereq([2.70], [], [
17 17
18 18
19# Copyright (C) 2001-2025 Free Software Foundation, Inc. 19# Copyright (C) 2001-2026 Free Software Foundation, Inc.
20 20
21# This file is part of Autoconf. This program is free 21# This file is part of Autoconf. This program is free
22# software; you can redistribute it and/or modify it under the 22# software; you can redistribute it and/or modify it under the
@@ -777,7 +777,7 @@ AC_DEFUN([_AC_CXX_CXX11_TEST_BODY],
777} 777}
778{ 778{
779 // Unicode literals 779 // Unicode literals
780 char const *utf8 = u8"UTF-8 string \u2500"; 780 auto const *utf8 = u8"UTF-8 string \u2500"; // This is portable to C++20.
781 char16_t const *utf16 = u"UTF-8 string \u2500"; 781 char16_t const *utf16 = u"UTF-8 string \u2500";
782 char32_t const *utf32 = U"UTF-32 string \u2500"; 782 char32_t const *utf32 = U"UTF-32 string \u2500";
783} 783}