Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/goto-symex/goto_symex_state.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ goto_symex_statet::goto_symex_statet(
const symex_targett::sourcet &_source,
std::size_t max_field_sensitive_array_size,
bool should_simplify,
const irep_idt &language_mode,
const irep_idt language_mode,
guard_managert &manager,
std::function<std::size_t(const irep_idt &)> fresh_l2_name_provider)
: goto_statet(manager),
Expand Down
4 changes: 2 additions & 2 deletions src/goto-symex/goto_symex_state.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class goto_symex_statet final : public goto_statet
const symex_targett::sourcet &,
std::size_t max_field_sensitive_array_size,
bool should_simplify,
const irep_idt &language_mode,
const irep_idt language_mode,
guard_managert &manager,
std::function<std::size_t(const irep_idt &)> fresh_l2_name_provider);
~goto_symex_statet();
Expand Down Expand Up @@ -259,7 +259,7 @@ class goto_symex_statet final : public goto_statet
}

private:
const irep_idt &language_mode;
const irep_idt language_mode;
std::function<std::size_t(const irep_idt &)> fresh_l2_name_provider;

/// \brief Dangerous, do not use
Expand Down
Loading