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

@ -1,5 +1,5 @@
// -*- coding: utf-8 -*-
// Copyright (C) 2011-2017 Laboratoire de Recherche et Développement de
// Copyright (C) 2011-2018 Laboratoire de Recherche et Développement de
// l'Epita (LRDE)
//
// This file is part of Spot, a model checking library.
@ -35,6 +35,17 @@ namespace spot
{
}
kripke_graph_state(const kripke_graph_state& other) noexcept
: cond_(other.cond_)
{
}
kripke_graph_state& operator=(const kripke_graph_state& other) noexcept
{
cond_ = other.cond_;
return *this;
}
virtual ~kripke_graph_state() noexcept
{
}