summaryrefslogtreecommitdiffstats
path: root/gl/m4/std-gnu11.m4
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2026-03-27 11:14:20 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2026-03-27 11:14:20 +0100
commit1113bbcd92d85b85579aa7feef511241e58fb0f5 (patch)
treed69b7bcfe2f7e80fda9a1f4ddd38209d6cb7aaf0 /gl/m4/std-gnu11.m4
parent99283972fe3a74d3a1dea12c4099f76286130a67 (diff)
parenta71ce153082565e5728424749475593dc0623492 (diff)
downloadmonitoring-plugins-1113bbcd92d85b85579aa7feef511241e58fb0f5.tar.gz
merged with mastercheck_snmp_fixes
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}