Promote use of shared_ptr

* spot/kripke/kripke.hh, spot/ltsmin/ltsmin.cc,
spot/ltsmin/ltsmin.hh, spot/mc/ec.hh, spot/mc/intersect.hh,
spot/mc/utils.hh, spot/twacube/Makefile.am,
spot/twacube/fwd.hh, spot/twacube/twacube.hh,
spot/twacube_algos/convert.cc, spot/twacube_algos/convert.hh,
tests/core/twacube.cc, tests/ltsmin/modelcheck.cc: here.
This commit is contained in:
Etienne Renault 2016-04-25 15:36:26 +02:00
parent 7d2abe229b
commit 765bb8a7c4
13 changed files with 64 additions and 31 deletions

View file

@ -47,7 +47,7 @@ int main()
tg->new_edge(s3, s3, bddtrue, spot::acc_cond::mark_t({0, 1}));
// Test translation
auto* aut = twa_to_twacube(tg);
auto aut = twa_to_twacube(tg);
spot::print_dot(std::cout, tg);
std::cout << "-----------\n" << *aut << "-----------\n";
@ -62,7 +62,5 @@ int main()
<< ' ' << d.acc_
<< std::endl;
}
spot::print_dot(std::cout, spot::twacube_to_twa(aut));
delete aut;
}