mirror of
https://github.com/Z3Prover/z3
synced 2025-11-12 09:02:04 +00:00
call it data instead of c_ptr for approaching C++11 std::vector convention.
This commit is contained in:
parent
524dcd35f9
commit
4a6083836a
456 changed files with 2802 additions and 2802 deletions
|
|
@ -46,7 +46,7 @@ struct relation_info {
|
|||
func_decl_ref_vector m_vars;
|
||||
expr_ref m_body;
|
||||
relation_info(ast_manager& m, func_decl* pred, ptr_vector<func_decl> const& vars, expr* b):
|
||||
m_pred(pred, m), m_vars(m, vars.size(), vars.c_ptr()), m_body(b, m) {}
|
||||
m_pred(pred, m), m_vars(m, vars.size(), vars.data()), m_body(b, m) {}
|
||||
};
|
||||
|
||||
class unknown_exception {};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue