3
0
Fork 0
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:
Nikolaj Bjorner 2024-10-02 10:45:11 -07:00
parent 93ff89bf98
commit d686e92bfa
2 changed files with 5 additions and 4 deletions

View file

@ -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];
}
};