* src/tgbaalgos/ndfs_result.hxx (ndfs_result::construct_prefix):
Initialize tmp to suppress a GCC 4.0 warning. * src/ltltest/randltl.cc (main): Likewise with another variable.
This commit is contained in:
parent
048a5825de
commit
5b6e79ad96
3 changed files with 8 additions and 1 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2005-09-05 Heikki Tauriainen <heikki.tauriainen@tkk.fi>
|
||||
|
||||
* src/tgbaalgos/ndfs_result.hxx (ndfs_result::construct_prefix):
|
||||
Initialize tmp to suppress a GCC 4.0 warning.
|
||||
* src/ltltest/randltl.cc (main): Likewise with another variable.
|
||||
|
||||
2005-09-05 Heikki Tauriainen <heikki.tauriainen@tkk.fi>
|
||||
|
||||
* src/ltlast/visitor.hh (visitor, const_visitor): Add empty
|
||||
|
|
|
|||
|
|
@ -169,7 +169,7 @@ main(int argc, char** argv)
|
|||
while (max_tries_u--)
|
||||
{
|
||||
spot::srand(opt_s++);
|
||||
spot::ltl::formula* f;
|
||||
spot::ltl::formula* f = 0;
|
||||
int max_tries_r = 1000;
|
||||
while (max_tries_r--)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -615,6 +615,7 @@ namespace spot
|
|||
{
|
||||
m_source_trans target;
|
||||
transition tmp;
|
||||
tmp.source = tmp.dest = 0; // Initialize to please GCC 4.0.
|
||||
|
||||
// Register all states from the cycle as target of the BFS.
|
||||
for (tgba_run::steps::const_iterator i = run->cycle.begin();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue