Fix clang compile error

This commit is contained in:
Vinnie Falco
2013-08-17 22:54:43 -07:00
parent f342a70fd5
commit d0e4352582

View File

@@ -80,8 +80,8 @@ struct Match
if (state.passed ())
{
if (t == other)
return State::passed;
return State::failed;
return State::pass;
return State::fail;
}
return state;
}