Fix clang compile error

This commit is contained in:
Vinnie Falco
2013-08-17 22:54:43 -07:00
parent 35f53516c7
commit dda53a96cc

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;
}