From dda53a96cc5f4988319a73c6260f65043ee5bdd2 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Sat, 17 Aug 2013 22:54:43 -0700 Subject: [PATCH] Fix clang compile error --- modules/beast_asio/handshake/beast_InputParser.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/beast_asio/handshake/beast_InputParser.h b/modules/beast_asio/handshake/beast_InputParser.h index f79f23afc..3c5f31fee 100644 --- a/modules/beast_asio/handshake/beast_InputParser.h +++ b/modules/beast_asio/handshake/beast_InputParser.h @@ -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; }