We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b804570 commit d475abcCopy full SHA for d475abc
src/goto-symex/symex_main.cpp
@@ -208,6 +208,9 @@ void goto_symext::symex_with_state(
208
// execution, so return the names generated through symbolic execution
209
// through `new_symbol_table`.
210
new_symbol_table = state.symbol_table;
211
+ // reset the namespace back to a sane state as state.symbol_table might go out
212
+ // of scope
213
+ ns = namespacet(outer_symbol_table);
214
}
215
216
void goto_symext::resume_symex_from_saved_state(
0 commit comments