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.
1 parent bafbb51 commit df7a89eCopy full SHA for df7a89e
src/linking/remove_internal_symbols.cpp
@@ -21,18 +21,18 @@ Author: Daniel Kroening
21
22
static void get_symbols(
23
const namespacet &ns,
24
- const symbolt &symbol,
+ const symbolt &in_symbol,
25
find_symbols_sett &dest)
26
{
27
std::vector<const symbolt *> working_set;
28
29
- working_set.push_back(&symbol);
+ working_set.push_back(&in_symbol);
30
31
while(!working_set.empty())
32
33
- const symbolt *s = working_set.back();
+ const symbolt *current_symbol_ptr = working_set.back();
34
working_set.pop_back();
35
- const symbolt &symbol = *s;
+ const symbolt &symbol = *current_symbol_ptr;
36
37
if(!dest.insert(symbol.name).second)
38
continue;
0 commit comments