3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-25 18:15:32 +00:00

llvm stuff

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-02 22:37:57 -07:00
parent 9823ee3b44
commit 4603ba2a94
2 changed files with 4 additions and 4 deletions

View file

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