* src/tgba/tgbaexplicit.hh: Fix hash_map definition to please old g++.

This commit is contained in:
Alexandre Duret-Lutz 2012-10-20 12:18:06 +02:00
parent b8ed85a30d
commit bf765480b1

View file

@ -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)