forked from OSchip/llvm-project
parent
4adcf78275
commit
521fa24d62
|
@ -290,6 +290,7 @@ void DFA::addTransition(Transition *T) {
|
||||||
// Add the new transition.
|
// Add the new transition.
|
||||||
bool Added = stateTransitions[T->from].insert(T).second;
|
bool Added = stateTransitions[T->from].insert(T).second;
|
||||||
assert(Added && "Cannot have multiple states for the same input");
|
assert(Added && "Cannot have multiple states for the same input");
|
||||||
|
(void)Added;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue