Commit 18fee3ee by Graham Stott Committed by Graham Stott

class.c (type_requires_array_cookie): Fix use of uninitialised variable has_two_argument_delete_p.


	* cp/class.c (type_requires_array_cookie): Fix use of uninitialised
	variable has_two_argument_delete_p.

From-SVN: r44256
parent 1f2f8b29
2001-07-23 Graham Stott <grahams@redhat.com>
* cp/class.c (type_requires_array_cookie): Fix use of uninitialised
variable has_two_argument_delete_p.
2001-07-21 Nathan Sidwell <nathan@codesourcery.com>
Remove flag_vtable_thunk. It is always on for the 3.0 ABI.
......
......@@ -4304,7 +4304,7 @@ type_requires_array_cookie (type)
tree type;
{
tree fns;
bool has_two_argument_delete_p;
bool has_two_argument_delete_p = false;
my_friendly_assert (CLASS_TYPE_P (type), 20010712);
......
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