We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bdce85b + 58b0ea5 commit bafbb51Copy full SHA for bafbb51
src/linking/static_lifetime_init.cpp
@@ -99,9 +99,9 @@ void static_lifetime_init(
99
{
100
// C standard 6.9.2, paragraph 5
101
// adjust the type to an array of size 1
102
- symbolt &symbol=*symbol_table.get_writeable(identifier);
103
- symbol.type=type;
104
- symbol.type.set(ID_size, from_integer(1, size_type()));
+ symbolt &writable_symbol = *symbol_table.get_writeable(identifier);
+ writable_symbol.type = type;
+ writable_symbol.type.set(ID_size, from_integer(1, size_type()));
105
}
106
107
if(type.id()==ID_incomplete_struct ||
0 commit comments