Commit 910dc5cc by Volker Reichelt Committed by Volker Reichelt

re PR c++/21686 (weird quoting in an error message)

	PR c++/21686
	* semantics.c (finish_id_expression): Fix quoting in error message.

From-SVN: r100140
parent 5bf6892e
2005-05-25 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR c++/21686
* semantics.c (finish_id_expression): Fix quoting in error message.
2005-05-25 DJ Delorie <dj@redhat.com>
* decl.c (duplicate_decls): Move warning control from if() to
......
......@@ -2760,9 +2760,9 @@ finish_id_expression (tree id_expression,
if (context != NULL_TREE && context != current_function_decl
&& ! TREE_STATIC (decl))
{
error ("use of %s from containing function",
(TREE_CODE (decl) == VAR_DECL
? "%<auto%> variable" : "parameter"));
error (TREE_CODE (decl) == VAR_DECL
? "use of %<auto%> variable from containing function"
: "use of parameter from containing function");
cp_error_at (" %q#D declared here", decl);
return error_mark_node;
}
......
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