mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
Simplify data-structures
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
14827e94f0
commit
322d355290
2 changed files with 193 additions and 132 deletions
|
@ -176,6 +176,10 @@ public:
|
|||
}
|
||||
|
||||
T * c_ptr() { return m_data; }
|
||||
|
||||
void swap(array & other) {
|
||||
std::swap(m_data, other.m_data);
|
||||
}
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue