* src/tgba/tgbaexplicit.hh: Fix hash_map definition to please old g++.
This commit is contained in:
parent
b8ed85a30d
commit
bf765480b1
1 changed files with 2 additions and 1 deletions
|
|
@ -375,7 +375,8 @@ namespace spot
|
|||
{
|
||||
typedef typename transitions_t::iterator trans_t;
|
||||
typedef std::map<int, trans_t> acc_map;
|
||||
typedef Sgi::hash_map<const spot::state*, acc_map> dest_map;
|
||||
typedef Sgi::hash_map<const spot::state*, acc_map,
|
||||
ptr_hash<spot::state> > dest_map;
|
||||
|
||||
typename ls_map::iterator i;
|
||||
for (i = ls_.begin(); i != ls_.end(); ++i)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue