Minor fixes to compile with GCC 4.4.

2009-04-09  Guillaume SADEGH  <sadegh@lrde.epita.fr>

	* src/eltlparse/eltlparse.yy (subformula): Avoid a comparaison
	between a signed and an unsigned value.
	* src/ltlast/automatop.hh, src/ltlast/automatop.cc (nfa): Avoid
	a name clash with the `nfa' class.
This commit is contained in:
Guillaume Sadegh 2009-04-09 17:14:32 +02:00
parent 7643c49cbd
commit bbbc1acc14
4 changed files with 16 additions and 6 deletions

View file

@ -99,7 +99,7 @@ namespace spot
return (*children_)[n];
}
const nfa::ptr
const spot::ltl::nfa::ptr
automatop::nfa() const
{
assert(nfa_ != 0);

View file

@ -66,7 +66,7 @@ namespace spot
formula* nth(unsigned n);
/// Get the NFA of this operator.
const nfa::ptr nfa() const;
const spot::ltl::nfa::ptr nfa() const;
bool is_negated() const;