Fix various typos

* bin/autfilt.cc, bin/common_post.cc, spot/graph/graph.hh,
  spot/twa/twa.hh, spot/twa/twagraph.hh, spot/twaalgos/remfin.cc: typos
* spot/twaalgos/toweak.cc: incorrect types when invoking std::hash
This commit is contained in:
Maximilien Colange 2017-10-11 15:08:48 +02:00
parent 62b86d3049
commit 5b2ce2736b
7 changed files with 77 additions and 77 deletions

View file

@ -50,9 +50,9 @@ namespace spot
operator()(const rc_state& s) const noexcept
{
using std::hash;
return ((hash<int>()(s.id)
^ (hash<int>()(s.rank)))
^ (hash<int>()(s.mark.id)));
return ((hash<unsigned>()(s.id)
^ (hash<unsigned>()(s.rank)))
^ (hash<acc_cond::mark_t>()(s.mark)));
}
};