mirror of
https://github.com/Z3Prover/z3
synced 2025-08-03 09:50:23 +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
|
@ -418,7 +418,7 @@ namespace smt {
|
|||
|
||||
template<typename Ext>
|
||||
std::ostream& theory_arith<Ext>::antecedents_t::display(theory_arith& th, std::ostream & out) const {
|
||||
th.get_context().display_literals_verbose(out, lits().size(), lits().c_ptr());
|
||||
th.get_context().display_literals_verbose(out, lits().size(), lits().data());
|
||||
if (!lits().empty()) out << "\n";
|
||||
ast_manager& m = th.get_manager();
|
||||
for (auto const& e : m_eqs) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue