Commit 6e6cb471 by Jakub Jelinek Committed by Jakub Jelinek

expr.c (cpp_classify_number): Add N_() around ?...

	* expr.c (cpp_classify_number): Add N_() around ?: string
	literals used in cpp_error_with_line call as format string.

From-SVN: r219759
parent 35912f16
2015-01-16 Jakub Jelinek <jakub@redhat.com>
* expr.c (cpp_classify_number): Add N_() around ?: string
literals used in cpp_error_with_line call as format string.
2015-01-05 Jakub Jelinek <jakub@redhat.com> 2015-01-05 Jakub Jelinek <jakub@redhat.com>
Update copyright years. Update copyright years.
......
...@@ -696,9 +696,9 @@ cpp_classify_number (cpp_reader *pfile, const cpp_token *token, ...@@ -696,9 +696,9 @@ cpp_classify_number (cpp_reader *pfile, const cpp_token *token,
&& CPP_PEDANTIC (pfile)) && CPP_PEDANTIC (pfile))
cpp_error_with_line (pfile, CPP_DL_PEDWARN, virtual_location, 0, cpp_error_with_line (pfile, CPP_DL_PEDWARN, virtual_location, 0,
CPP_OPTION (pfile, cplusplus) CPP_OPTION (pfile, cplusplus)
? "binary constants are a C++14 feature " ? N_("binary constants are a C++14 feature "
"or GCC extension" "or GCC extension")
: "binary constants are a GCC extension"); : N_("binary constants are a GCC extension"));
if (radix == 10) if (radix == 10)
result |= CPP_N_DECIMAL; result |= CPP_N_DECIMAL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment