chore(library/blast/imp_extension): fix unused argument warning
This commit is contained in:
parent
9689085834
commit
8c431bdb20
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ imp_extension * imp_extension::clone() {
|
||||||
return new imp_extension(this);
|
return new imp_extension(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
void imp_extension::hypothesis_activated(hypothesis const & h, hypothesis_idx hidx) {
|
void imp_extension::hypothesis_activated(hypothesis const & h, hypothesis_idx) {
|
||||||
imp_extension_state & state = get_imp_extension_state(m_state_id);
|
imp_extension_state & state = get_imp_extension_state(m_state_id);
|
||||||
if (is_nil(m_asserts)) state.push();
|
if (is_nil(m_asserts)) state.push();
|
||||||
m_asserts = cons(h, m_asserts);
|
m_asserts = cons(h, m_asserts);
|
||||||
|
|
Loading…
Reference in a new issue