gcc-snapshot warnings
* spot/kripke/kripkegraph.hh, spot/priv/bddalloc.hh, spot/priv/freelist.hh, spot/priv/satcommon.hh, spot/ta/taexplicit.cc spot/twa/bdddict.cc, spot/twa/twagraph.hh, spot/twaalgos/alternation.hh, spot/twaalgos/dtwasat.cc, spot/twaalgos/ltl2taa.cc, spot/twaalgos/stutter.cc, tests/core/ngraph.cc: Add default constructors, copy constructors, or remove useless destructors.
This commit is contained in:
parent
d147ad2510
commit
389ef16b1b
12 changed files with 89 additions and 21 deletions
|
|
@ -345,6 +345,19 @@ public:
|
|||
{
|
||||
}
|
||||
|
||||
my_state() noexcept
|
||||
{
|
||||
}
|
||||
|
||||
my_state(const my_state&) noexcept
|
||||
{
|
||||
}
|
||||
|
||||
my_state& operator=(const my_state&) noexcept
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
int compare(const spot::state* other) const override
|
||||
{
|
||||
auto o = spot::down_cast<const my_state*>(other);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue