@@ -554,7 +554,7 @@ code_blockt recursive_initializationt::build_pointer_constructor(
554
554
const symbol_exprt &local_result =
555
555
get_fresh_local_typed_symexpr (" local_result" , type, nullptr_expr);
556
556
then_case.add (code_declt{local_result});
557
- const namespacet & ns{goto_model.symbol_table };
557
+ const namespacet ns{goto_model.symbol_table };
558
558
then_case.add (code_function_callt{
559
559
local_result, get_malloc_function (), {*size_of_expr (type.subtype (), ns)}});
560
560
initialize (
@@ -631,7 +631,7 @@ code_blockt recursive_initializationt::build_struct_constructor(
631
631
const typet &struct_type = result.type ().subtype ();
632
632
PRECONDITION (struct_type.id () == ID_struct_tag);
633
633
code_blockt body{};
634
- const namespacet & ns{goto_model.symbol_table };
634
+ const namespacet ns{goto_model.symbol_table };
635
635
for (const auto &component :
636
636
ns.follow_tag (to_struct_tag_type (struct_type)).components ())
637
637
{
@@ -693,7 +693,7 @@ code_blockt recursive_initializationt::build_dynamic_array_constructor(
693
693
const symbol_exprt &local_result =
694
694
get_fresh_local_typed_symexpr (" local_result" , pointer_type, exprt{});
695
695
body.add (code_declt{local_result});
696
- const namespacet & ns{goto_model.symbol_table };
696
+ const namespacet ns{goto_model.symbol_table };
697
697
for (auto array_size = min_array_size; array_size <= max_array_size;
698
698
++array_size)
699
699
{
0 commit comments