3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-18 21:15:47 +00:00

Remove unused swap() methods (#8538)

This commit is contained in:
Copilot 2026-02-08 18:53:43 +00:00 committed by GitHub
parent 56db8d5e98
commit c0be7ac621
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 17 additions and 24 deletions

View file

@ -193,11 +193,6 @@ public:
TManager & m() const {
return get_manager();
}
void swap(ref_pair_vector & other) noexcept {
SASSERT(&(this->m_manager) == &(other.m_manager));
this->m_nodes.swap(other.m_nodes);
}
class element_ref {
elem_t & m_ref;