diff --git a/spot/misc/game.cc b/spot/misc/game.cc index dde0cbb6e..4db32694e 100644 --- a/spot/misc/game.cc +++ b/spot/misc/game.cc @@ -92,7 +92,7 @@ parity_game::attractor(const region_t& subgame, region_t& set, unsigned max_parity, int p, bool attr_max) const { strategy_t strategy; - std::unordered_set complement = subgame; + std::set complement(subgame.begin(), subgame.end()); for (unsigned s: set) complement.erase(s);