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:
parent
62b86d3049
commit
5b2ce2736b
7 changed files with 77 additions and 77 deletions
|
|
@ -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)));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue