diff options
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/semantics.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index aa8b26c4a11..a54ca60803e 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +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 diff --git a/gcc/cp/semantics.c b/gcc/cp/semantics.c index 6955291d536..1316ef34888 100644 --- a/gcc/cp/semantics.c +++ b/gcc/cp/semantics.c @@ -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; } |