mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 09:34:08 +00:00
llvm stuff
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
9823ee3b44
commit
4603ba2a94
|
@ -240,7 +240,7 @@ class ptr_buffer : public buffer<T *, false, INITIAL_SIZE> {
|
|||
public:
|
||||
void append(unsigned n, T * const * elems) {
|
||||
for (unsigned i = 0; i < n; i++) {
|
||||
push_back(elems[i]);
|
||||
this->push_back(elems[i]);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
@ -198,12 +198,12 @@ public:
|
|||
|
||||
ref_vector(ref_vector const & other):
|
||||
super(ref_manager_wrapper<T, TManager>(other.m_manager)) {
|
||||
append(other);
|
||||
this->append(other);
|
||||
}
|
||||
|
||||
ref_vector(TManager & m, unsigned sz, T * const * data):
|
||||
super(ref_manager_wrapper<T, TManager>(m)) {
|
||||
append(sz, data);
|
||||
this->append(sz, data);
|
||||
}
|
||||
|
||||
TManager & get_manager() const {
|
||||
|
@ -271,7 +271,7 @@ public:
|
|||
ref_vector & set(ref_vector const& other) {
|
||||
if (this != &other) {
|
||||
this->reset();
|
||||
append(other);
|
||||
this->append(other);
|
||||
}
|
||||
return *this;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue