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:
Alexandre Duret-Lutz 2018-08-10 16:22:57 +02:00
parent d147ad2510
commit 389ef16b1b
12 changed files with 89 additions and 21 deletions

View file

@ -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);