mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 14:25:46 +00:00
disambiguate
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
93ff89bf98
commit
d686e92bfa
2 changed files with 5 additions and 4 deletions
|
@ -62,7 +62,7 @@ public:
|
|||
return m_vec.m_vector[m_i] == other.m_vec.m_vector[other.m_i];
|
||||
}
|
||||
bool operator!=(ref const& other) const {
|
||||
return m_vec.m_vector[m_i] != other.m_vec.m_vectpr[other.m_i];
|
||||
return m_vec.m_vector[m_i] != other.m_vec.m_vector[other.m_i];
|
||||
}
|
||||
|
||||
|
||||
|
@ -90,7 +90,7 @@ public:
|
|||
return m_vec.m_vector[m_i] == other.m_vec.m_vector[other.m_i];
|
||||
}
|
||||
bool operator!=(ref_const const& other) const {
|
||||
return m_vec.m_vector[m_i] != other.m_vec.m_vectpr[other.m_i];
|
||||
return m_vec.m_vector[m_i] != other.m_vec.m_vector[other.m_i];
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue