mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-26 22:14:44 +08:00
re PR c++/12796 (Wrong line number in error message)
PR c++/12796 * class.c (handle_using_decl): Set input_location before calling error_not_base_type. From-SVN: r73174
This commit is contained in:
parent
97603db35a
commit
441b941ac2
@ -1,3 +1,9 @@
|
||||
2003-11-01 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
|
||||
|
||||
PR c++/12796
|
||||
* class.c (handle_using_decl): Set input_location before calling
|
||||
error_not_base_type.
|
||||
|
||||
2003-10-26 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
|
||||
|
||||
PR c++/10371
|
||||
|
@ -1109,7 +1109,11 @@ handle_using_decl (tree using_decl, tree t)
|
||||
binfo = lookup_base (t, ctype, ba_any, NULL);
|
||||
if (! binfo)
|
||||
{
|
||||
location_t saved_loc = input_location;
|
||||
|
||||
input_location = DECL_SOURCE_LOCATION (using_decl);
|
||||
error_not_base_type (ctype, t);
|
||||
input_location = saved_loc;
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user