add default clause to switch statement albeit technically superflous

This commit is contained in:
Dennis Luxen 2014-04-18 14:12:56 +02:00
parent 2c9edcaf23
commit edef9c11f7

View File

@ -239,6 +239,8 @@ boost::tribool RequestParser::consume(
} }
case expecting_newline_3: case expecting_newline_3:
return (input == '\n'); return (input == '\n');
default:
return false;
} }
} }