diff options
Diffstat (limited to 'gcc/cp/error.c')
-rw-r--r-- | gcc/cp/error.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/error.c b/gcc/cp/error.c index 7125b88..6d1f3da 100644 --- a/gcc/cp/error.c +++ b/gcc/cp/error.c @@ -3588,11 +3588,11 @@ maybe_print_constexpr_context (diagnostic_context *context) const char *s = expr_as_string (t, 0); if (context->show_column) pp_verbatim (context->printer, - _("%r%s:%d:%d:%R in constexpr expansion of %qs"), + _("%r%s:%d:%d:%R in %<constexpr%> expansion of %qs"), "locus", xloc.file, xloc.line, xloc.column, s); else pp_verbatim (context->printer, - _("%r%s:%d:%R in constexpr expansion of %qs"), + _("%r%s:%d:%R in %<constexpr%> expansion of %qs"), "locus", xloc.file, xloc.line, s); pp_newline (context->printer); } |