diff options
Diffstat (limited to 'gcc/objc/objc-act.c')
-rw-r--r-- | gcc/objc/objc-act.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 03b4150..c379a51 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -3940,8 +3940,7 @@ objc_detect_field_duplicates (bool check_superclasses_only) { /* First, build the hashtable by putting all the instance variables of superclasses in it. */ - hash_table <decl_name_hash> htab; - htab.create (37); + hash_table<decl_name_hash> htab (37); tree interface; for (interface = lookup_interface (CLASS_SUPER_NAME (objc_interface_context)); @@ -4018,7 +4017,6 @@ objc_detect_field_duplicates (bool check_superclasses_only) } } } - htab.dispose (); return true; } } |