aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp
diff options
context:
space:
mode:
authorKriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>2001-08-13 10:03:45 +0000
committerKriang Lerdsuwanakij <lerdsuwa@gcc.gnu.org>2001-08-13 10:03:45 +0000
commit3605b283e8be90c330490d12d95af51a588f7e52 (patch)
treeddc6bf9ac16a1fa7342ae6e281bf7e709787c29c /gcc/cp
parent5d0cab94d002075eb728ac5d6ce3a9eeb09b1f90 (diff)
downloadgcc-3605b283e8be90c330490d12d95af51a588f7e52.zip
gcc-3605b283e8be90c330490d12d95af51a588f7e52.tar.gz
gcc-3605b283e8be90c330490d12d95af51a588f7e52.tar.bz2
decl2.c (do_nonmember_using_decl): Replace using directive with using declaration in the error message.
* decl2.c (do_nonmember_using_decl): Replace using directive with using declaration in the error message. From-SVN: r44847
Diffstat (limited to 'gcc/cp')
-rw-r--r--gcc/cp/ChangeLog5
-rw-r--r--gcc/cp/decl2.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 29894a3..18b2c38 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,8 @@
+2001-08-13 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
+
+ * decl2.c (do_nonmember_using_decl): Replace using directive
+ with using declaration in the error message.
+
2001-08-11 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
* pt.c (maybe_fold_nontype_arg): Use TREE_TYPE of ARG as the
diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c
index 0a9e5ad..7be3368 100644
--- a/gcc/cp/decl2.c
+++ b/gcc/cp/decl2.c
@@ -5022,7 +5022,7 @@ do_nonmember_using_decl (scope, name, oldval, oldtype, newval, newtype)
*newtype = BINDING_TYPE (decls);
if (oldtype && *newtype && oldtype != *newtype)
{
- cp_error ("using directive `%D' introduced ambiguous type `%T'",
+ cp_error ("using declaration `%D' introduced ambiguous type `%T'",
name, oldtype);
return;
}