mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-08 13:47:31 +08:00
re PR c++/11713 (declaration conflicts)
PR c++/11713 * search.c (setup_class_bindings): Handle conversion operators specially. PR c++/11713 * g++.dg/overload/operator1.C: New test. From-SVN: r70136
This commit is contained in:
parent
f9eb610fbe
commit
b9445edd9a
@ -2123,6 +2123,20 @@ setup_class_bindings (tree name, int type_binding_p)
|
||||
if (BASELINK_P (value_binding))
|
||||
/* NAME is some overloaded functions. */
|
||||
value_binding = BASELINK_FUNCTIONS (value_binding);
|
||||
/* Two conversion operators that convert to the same type
|
||||
may have different names. (See
|
||||
mangle_conv_op_name_for_type.) To avoid recording the
|
||||
same conversion operator declaration more than once we
|
||||
must check to see that the same operator was not already
|
||||
found under another name. */
|
||||
if (IDENTIFIER_TYPENAME_P (name)
|
||||
&& is_overloaded_fn (value_binding))
|
||||
{
|
||||
tree fns;
|
||||
for (fns = value_binding; fns; fns = OVL_NEXT (fns))
|
||||
if (IDENTIFIER_CLASS_VALUE (DECL_NAME (OVL_CURRENT (fns))))
|
||||
return;
|
||||
}
|
||||
pushdecl_class_level (value_binding);
|
||||
}
|
||||
}
|
||||
|
34
gcc/testsuite/g++.dg/overload/operator1.C
Normal file
34
gcc/testsuite/g++.dg/overload/operator1.C
Normal file
@ -0,0 +1,34 @@
|
||||
typedef struct _GdkDrawable GdkDrawable;
|
||||
typedef struct _GdkDrawable GdkBitmap;
|
||||
typedef struct _GdkDrawable GdkPixmap;
|
||||
|
||||
class Drawable
|
||||
{
|
||||
public:
|
||||
operator GdkDrawable* () const;
|
||||
};
|
||||
|
||||
|
||||
class Pixmap : public Drawable
|
||||
{
|
||||
public:
|
||||
operator GdkPixmap* () const;
|
||||
|
||||
};
|
||||
|
||||
|
||||
class Bitmap : public Pixmap
|
||||
{
|
||||
public:
|
||||
operator GdkBitmap* () const;
|
||||
|
||||
};
|
||||
|
||||
class Event
|
||||
{
|
||||
};
|
||||
|
||||
Bitmap::operator GdkBitmap* () const
|
||||
{
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user