Skip to content
Snippets Groups Projects
Commit 14c5726b authored by Martin Žák's avatar Martin Žák
Browse files

UnknownTransition operator < fix

parent e29537d0
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ bool UnknownTransition::operator <(const UnknownTransition& other) const { ...@@ -53,7 +53,7 @@ bool UnknownTransition::operator <(const UnknownTransition& other) const {
return from < other.from; return from < other.from;
} else if (input != other.input) { } else if (input != other.input) {
return input < other.input; return input < other.input;
} else if (to != to) { } else if (to != other.to) {
return to < other.to; return to < other.to;
} else if (output != output) { } else if (output != output) {
return output < other.output; return output < other.output;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment