diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-09 10:00:12 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-09 10:00:12 +0000 |
commit | ce2105a9d6bd749cbcc2e8f520fe5502f3c66ec8 (patch) | |
tree | e78a40a3a3330e19a79c1f0ced81aa907f953198 | |
parent | 9dcbf64ebdbf86bbf380a295b5262d086faa6517 (diff) | |
download | gcc-ce2105a9d6bd749cbcc2e8f520fe5502f3c66ec8.tar.gz |
Fix typo
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79161 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/cp/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/init.c b/gcc/cp/init.c index 60a4d047a19..efc9a1323e1 100644 --- a/gcc/cp/init.c +++ b/gcc/cp/init.c @@ -372,7 +372,7 @@ perform_member_init (tree member, tree init) else if (TREE_CODE (type) == REFERENCE_TYPE) pedwarn ("uninitialized reference member `%D'", member); else if (CP_TYPE_CONST_P (type)) - pedwarn ("uninitialized mber `%D' with `const' type `%T'", + pedwarn ("uninitialized member `%D' with `const' type `%T'", member, type); } else if (TREE_CODE (init) == TREE_LIST) |