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 (state.passed ())
{ {
if (t == other) if (t == other)
return State::passed; return State::pass;
return State::failed; return State::fail;
} }
return state; return state;
} }