Fix several warnings reported by clang++ 3.2.
* src/tgba/tgbakvcomplement.cc (tgba_kv_complement_succ_iterator::current_state_), src/ta/taexplicit.hh (state_ta_explicit::source_): Remove useless private member. * src/ta/taexplicit.cc: Adjust constructors. * src/ta/tgta.cc, src/ta/taexplicit.hh: Also fix copyright banner. * src/bin/ltlcross.cc (exec_with_timeout): Work around warning about status not being set in the error path.
This commit is contained in:
parent
361f594655
commit
aa7b43eadf
5 changed files with 19 additions and 20 deletions
|
|
@ -1,5 +1,5 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2010, 2011, 2012 Laboratoire de Recherche et
|
||||
// Copyright (C) 2010, 2011, 2012, 2013 Laboratoire de Recherche et
|
||||
// Développement de l'Epita (LRDE).
|
||||
//
|
||||
// This file is part of Spot, a model checking library.
|
||||
|
|
@ -43,15 +43,13 @@ namespace spot
|
|||
// ta_explicit_succ_iterator
|
||||
|
||||
ta_explicit_succ_iterator::ta_explicit_succ_iterator(
|
||||
const state_ta_explicit* s) :
|
||||
source_(s)
|
||||
const state_ta_explicit* s)
|
||||
{
|
||||
transitions_ = s->get_transitions();
|
||||
}
|
||||
|
||||
ta_explicit_succ_iterator::ta_explicit_succ_iterator(
|
||||
const state_ta_explicit* s, bdd condition) :
|
||||
source_(s)
|
||||
const state_ta_explicit* s, bdd condition)
|
||||
{
|
||||
transitions_ = s->get_transitions(condition);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue