diff options
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/decl2.c | 10 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.ns/using14.C | 15 |
3 files changed, 26 insertions, 4 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index f180ac1..a72b74c 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2000-11-04 Mark Mitchell <mark@codesourcery.com> + + * decl2.c (do_nonmember_using_decl): Allow `extern "C"' + declarations from different namespaces to be combined. + 2000-11-03 Zack Weinberg <zack@wolery.stanford.edu> * decl.c: Include tm_p.h. diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c index 0cfcc4d..1af6d27 100644 --- a/gcc/cp/decl2.c +++ b/gcc/cp/decl2.c @@ -5204,10 +5204,12 @@ do_nonmember_using_decl (scope, name, oldval, oldtype, newval, newtype) && compparms (TYPE_ARG_TYPES (TREE_TYPE (new_fn)), TYPE_ARG_TYPES (TREE_TYPE (old_fn)))) { - /* There was already a non-using declaration in - this scope with the same parameter types. */ - cp_error ("`%D' is already declared in this scope", - name); + if (!(DECL_EXTERN_C_P (new_fn) + && DECL_EXTERN_C_P (old_fn))) + /* There was already a non-using declaration in + this scope with the same parameter types. */ + cp_error ("`%D' is already declared in this scope", + name); break; } else if (duplicate_decls (new_fn, old_fn)) diff --git a/gcc/testsuite/g++.old-deja/g++.ns/using14.C b/gcc/testsuite/g++.old-deja/g++.ns/using14.C new file mode 100644 index 0000000..522f8ae --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.ns/using14.C @@ -0,0 +1,15 @@ +// Build don't link: +// Origin: Mark Mitchell <mark@codesourcery.com> + +extern "C" void f (); + +namespace N { +extern "C" void f (); +} + +using N::f; + +void g () +{ + f (); +} |