Remove useless code.

* spot/twaalgos/determinize.cc: remove code.
This commit is contained in:
Maximilien Colange 2017-04-24 15:04:53 +02:00
parent 17bbef6cce
commit 52af3948d6

View file

@ -534,18 +534,6 @@ namespace spot
bool bool
safra_state::operator<(const safra_state& other) const safra_state::operator<(const safra_state& other) const
{ {
if (nodes_ == other.nodes_)
{
for (auto& n: nodes_)
{
auto it = other.nodes_.find(n.first);
assert(it != other.nodes_.end());
if (nesting_cmp(n.second, it->second))
return true;
}
return false;
}
return nodes_ < other.nodes_; return nodes_ < other.nodes_;
} }