Mark more classes are final.
Fixes #42. * bench/stutter/stutter_invariance_formulas.cc, bin/autfilt.cc, bin/common_output.cc, bin/dstar2tgba.cc, bin/ltl2tgba.cc, bin/ltl2tgta.cc, bin/ltlcross.cc, bin/ltldo.cc, bin/ltlfilt.cc, bin/ltlgrind.cc, spot/misc/intvcmp2.cc, spot/misc/intvcomp.cc, spot/taalgos/dot.cc, spot/taalgos/statessetbuilder.cc, spot/taalgos/stats.cc, spot/tl/relabel.cc, spot/tl/simplify.cc, spot/tl/snf.cc, spot/twa/bdddict.cc, spot/twa/twaproduct.cc, spot/twaalgos/degen.cc, spot/twaalgos/determinize.cc, spot/twaalgos/dot.cc, spot/twaalgos/emptiness.cc, spot/twaalgos/gtec/ce.cc, spot/twaalgos/ltl2tgba_fm.cc, spot/twaalgos/magic.cc, spot/twaalgos/neverclaim.cc, spot/twaalgos/se05.cc, spot/twaalgos/simulation.cc, spot/twaalgos/tau03.cc, spot/twaalgos/tau03opt.cc: Add final.
This commit is contained in:
parent
8814f16637
commit
2402c2141d
32 changed files with 78 additions and 76 deletions
|
|
@ -57,7 +57,7 @@ namespace spot
|
|||
|
||||
// Acceptance set common to all outgoing edges (of the same
|
||||
// SCC -- we do not care about the other) of some state.
|
||||
class outgoing_acc
|
||||
class outgoing_acc final
|
||||
{
|
||||
const_twa_graph_ptr a_;
|
||||
typedef std::tuple<acc_cond::mark_t,
|
||||
|
|
@ -125,7 +125,7 @@ namespace spot
|
|||
};
|
||||
|
||||
// Order of accepting sets (for one SCC)
|
||||
class acc_order
|
||||
class acc_order final
|
||||
{
|
||||
std::vector<unsigned> order_;
|
||||
acc_cond::mark_t found_;
|
||||
|
|
@ -162,7 +162,7 @@ namespace spot
|
|||
};
|
||||
|
||||
// Accepting order for each SCC
|
||||
class scc_orders
|
||||
class scc_orders final
|
||||
{
|
||||
std::map<int, acc_order> orders_;
|
||||
bool skip_levels_;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue