Minor fixes to compile with GCC 3.3
* src/ltlast/automatop.cc, src/ltlast/automatop.hh: Rename nfa as get_nfa to avoid a name clash with the `nfa' class. * src/ltlvisit/clone.cc, src/ltlvisit/nenoform.cc, src/ltlvisit/tostring.cc, src/tgbaalgos/eltl2tgba_lacim.cc: Use get_nfa instead of nfa. * src/tgba/tgbasafracomplement.cc: Don't use a const_reverse_iterator.
This commit is contained in:
parent
dcf7eed11f
commit
0d6fd3225a
8 changed files with 27 additions and 13 deletions
|
|
@ -71,7 +71,7 @@ namespace spot
|
|||
automatop::vec* res = new automatop::vec;
|
||||
for (unsigned i = 0; i < ao->size(); ++i)
|
||||
res->push_back(recurse(ao->nth(i)));
|
||||
result_ = automatop::instance(ao->nfa(), res, ao->is_negated());
|
||||
result_ = automatop::instance(ao->get_nfa(), res, ao->is_negated());
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
|
|
@ -166,7 +166,7 @@ namespace spot
|
|||
unsigned aos = ao->size();
|
||||
for (unsigned i = 0; i < aos; ++i)
|
||||
res->push_back(recurse(ao->nth(i)));
|
||||
result_ = automatop::instance(ao->nfa(), res, negated);
|
||||
result_ = automatop::instance(ao->get_nfa(), res, negated);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
|
|
@ -167,7 +167,7 @@ namespace spot
|
|||
top_level_ = false;
|
||||
if (!top_level)
|
||||
os_ << "(";
|
||||
os_ << ao->nfa()->get_name() << "(";
|
||||
os_ << ao->get_nfa()->get_name() << "(";
|
||||
unsigned max = ao->size();
|
||||
ao->nth(0)->accept(*this);
|
||||
for (unsigned n = 1; n < max; ++n)
|
||||
|
|
@ -324,7 +324,7 @@ namespace spot
|
|||
top_level_ = false;
|
||||
if (!top_level)
|
||||
os_ << "(";
|
||||
os_ << ao->nfa()->get_name() << "(";
|
||||
os_ << ao->get_nfa()->get_name() << "(";
|
||||
unsigned max = ao->size();
|
||||
ao->nth(0)->accept(*this);
|
||||
for (unsigned n = 1; n < max; ++n)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue