Commit dfe2b0b3 by Mark Mitchell Committed by Mark Mitchell

search.c (setup_class_bindings): Robustify.

	* search.c (setup_class_bindings): Robustify.
	* typeck.c (common_type): Use same_type_p, not pointer equality,
	to compare types.

From-SVN: r28756
parent 4ce3d537
1999-08-18 Mark Mitchell <mark@codesourcery.com>
* search.c (setup_class_bindings): Robustify.
* typeck.c (common_type): Use same_type_p, not pointer equality,
to compare types.
* cp-tree.h (build_lang_field_decl): Remove.
* class.c (build_vtable): Replace calls to build_lang_field_decl
with build_lang_decl.
......
......@@ -2960,7 +2960,7 @@ setup_class_bindings (name, type_binding_p)
binding. This means that we already processed this binding
above. */
my_friendly_assert (type_binding_p, 19990401);
else
else if (value_binding)
{
if (TREE_CODE (value_binding) == TREE_LIST
&& TREE_TYPE (value_binding) == error_mark_node)
......
......@@ -698,7 +698,7 @@ common_type (t1, t2)
tt1 = TYPE_MAIN_VARIANT (tt1);
tt2 = TYPE_MAIN_VARIANT (tt2);
if (tt1 == tt2)
if (same_type_p (tt1, tt2))
target = tt1;
else if (b1)
{
......
// Build don't link:
// Origin: Leon Bottou <leonb@research.att.com>
class AA { protected:
template <class T> struct BB { T x; BB(const T &x) : x(x) { }; };
template <class T> struct CC : public BB<T> { CC(const T &x) : BB<T>(x) { };
};
};
// Build don't link:
// Origin: Rick Campbell <rick.campbell@db.com>
template <class Owner, typename Type>
struct DataMember
{
inline DataMember (Type Owner::* data_member);
Type Owner::* _data_member;
};
template <class Owner, typename Type>
inline
DataMember<Owner,Type>::DataMember (Type Owner::* data_member)
: _data_member (data_member)
{
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment