From e91f9da57928ab10e2206c64ce490477d3b46ec1 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Thu, 4 Feb 2021 18:30:45 +0100 Subject: c++, libcpp: Use make_signed_t in the 1z diagnostics The following patch uses make_signed_t instead of make_signed::type in the diagnostics, because the former is shorter. It is true that one can't use make_signed::type in C++11 code (which is why I haven't changed it in the testcase which is c++11 effective target), but the message talks about C++23 and make_signed_t is a C++14 and later feature, so I think it is fine. 2021-02-04 Jakub Jelinek * expr.c (cpp_classify_number): Use make_signed_t instead of make_signed::type in the diagnostics. * g++.dg/warn/Wsize_t-literals.C: Expect make_signed_t instead of make_signed::type in the diagnostics. --- libcpp/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcpp/expr.c') diff --git a/libcpp/expr.c b/libcpp/expr.c index 42007f9..dd5611d 100644 --- a/libcpp/expr.c +++ b/libcpp/expr.c @@ -820,7 +820,7 @@ cpp_classify_number (cpp_reader *pfile, const cpp_token *token, { const char *message = (result & CPP_N_UNSIGNED) == CPP_N_UNSIGNED ? N_("use of C++23 % integer constant") - : N_("use of C++23 %::type%> integer constant"); + : N_("use of C++23 %%> integer constant"); cpp_warning_with_line (pfile, CPP_W_SIZE_T_LITERALS, virtual_location, 0, message); } -- cgit v1.1