* src/tgba/tgbaexplicit.hh: Fix definition of the new alias_ map.

This commit is contained in:
Alexandre Duret-Lutz 2012-10-03 09:30:04 +02:00
parent fb38fe56aa
commit 561b852106

View file

@ -263,7 +263,7 @@ namespace spot
typedef State state;
protected:
typedef Sgi::hash_map<label_t, State, label_hash_t> ls_map;
typedef Sgi::hash_map<label_t, State*> alias_map;
typedef Sgi::hash_map<label_t, State*, label_hash_t> alias_map;
typedef Sgi::hash_map<const State*, label_t, ptr_hash<State> > sl_map;
public: