diff options
author | reichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-25 09:47:18 +0000 |
---|---|---|
committer | reichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-25 09:47:18 +0000 |
commit | 3614a996b32b3f99d322eec04fec10635cdb5191 (patch) | |
tree | d64409484c05086a96eefabde703636ba436969a /gcc | |
parent | f2562d280654264ff5bc150f7099dee941c2aea6 (diff) | |
download | gcc-3614a996b32b3f99d322eec04fec10635cdb5191.tar.gz |
PR c++/21686
* semantics.c (finish_id_expression): Fix quoting in error message.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100140 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-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; } |