mirror of
https://github.com/Z3Prover/z3
synced 2025-08-10 05:00: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
|
@ -23,7 +23,7 @@ Author:
|
|||
#include "solver/solver.h"
|
||||
|
||||
|
||||
namespace user {
|
||||
namespace user_solver {
|
||||
|
||||
class solver : public euf::th_euf_solver, public ::solver::propagate_callback {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue