mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
Issue #5586 reported that Android builds (targetting, e.g., x86) failed to compile due to a conflict between: * `struct user` in `sys/user.h`; and * `namespace user` in z3's `user_solver.h` This issue is resolved by renaming `namespace user` to `namespace user_solver` (matching the header name) to avoid this conflict. Reported-by: Jamie Collinson <jamiecollinson@gmail.com> Signed-off-by: Andrew V. Jones <andrewvaughanj@gmail.com>
This commit is contained in:
parent
bfa960c2ce
commit
f1b8376739
4 changed files with 4 additions and 4 deletions
|
@ -994,7 +994,7 @@ namespace euf {
|
|||
::solver::push_eh_t& push_eh,
|
||||
::solver::pop_eh_t& pop_eh,
|
||||
::solver::fresh_eh_t& fresh_eh) {
|
||||
m_user_propagator = alloc(user::solver, *this);
|
||||
m_user_propagator = alloc(user_solver::solver, *this);
|
||||
m_user_propagator->add(ctx, push_eh, pop_eh, fresh_eh);
|
||||
for (unsigned i = m_scopes.size(); i-- > 0; )
|
||||
m_user_propagator->push();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue