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
|
|
@ -1,5 +1,5 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2011, 2013, 2014 Laboratoire de Recherche et
|
||||
// Copyright (C) 2011, 2013, 2014, 2016 Laboratoire de Recherche et
|
||||
// Développement de l'Epita (LRDE).
|
||||
//
|
||||
// This file is part of Spot, a model checking library.
|
||||
|
|
@ -184,7 +184,7 @@ namespace spot
|
|||
unsigned int bits_left_;
|
||||
};
|
||||
|
||||
class int_array_vector_compression:
|
||||
class int_array_vector_compression final:
|
||||
public stream_compression_base<int_array_vector_compression>
|
||||
{
|
||||
public:
|
||||
|
|
@ -233,7 +233,7 @@ namespace spot
|
|||
std::vector<unsigned int>* result_;
|
||||
};
|
||||
|
||||
class int_vector_vector_compression:
|
||||
class int_vector_vector_compression final:
|
||||
public stream_compression_base<int_vector_vector_compression>
|
||||
{
|
||||
public:
|
||||
|
|
@ -277,7 +277,7 @@ namespace spot
|
|||
std::vector<unsigned int>& output_;
|
||||
};
|
||||
|
||||
class int_array_array_compression:
|
||||
class int_array_array_compression final:
|
||||
public stream_compression_base<int_array_array_compression>
|
||||
{
|
||||
public:
|
||||
|
|
@ -521,7 +521,7 @@ namespace spot
|
|||
unsigned int buffer_bits_;
|
||||
};
|
||||
|
||||
class int_vector_vector_decompression:
|
||||
class int_vector_vector_decompression final:
|
||||
public stream_decompression_base<int_vector_vector_decompression>
|
||||
{
|
||||
public:
|
||||
|
|
@ -572,7 +572,7 @@ namespace spot
|
|||
size_t size_;
|
||||
};
|
||||
|
||||
class int_vector_array_decompression:
|
||||
class int_vector_array_decompression final:
|
||||
public stream_decompression_base<int_vector_array_decompression>
|
||||
{
|
||||
public:
|
||||
|
|
@ -622,7 +622,7 @@ namespace spot
|
|||
size_t size_;
|
||||
};
|
||||
|
||||
class int_array_array_decompression:
|
||||
class int_array_array_decompression final:
|
||||
public stream_decompression_base<int_array_array_decompression>
|
||||
{
|
||||
public:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue