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
This commit is contained in:
parent
1f2f8b29b1
commit
18fee3ee73
@ -1,3 +1,8 @@
|
||||
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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user