Skip to content

Commit

Permalink
Merge branch '0.6-dev-next-http-field-parsers' into 0.6-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
eao197 committed Jan 30, 2020
2 parents f048bf3 + 07b2c1e commit 72cf7e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev/restinio/helpers/easy_parser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ struct is_clause< T, meta::void_t< decltype(T::entity_type) > >
* @note
* The current implementation checks only the presence of T::entity_type of
* type entity_type_t and the value of T::entity_type. Presence of
* T::try_parse is not checked.
* T::try_process is not checked.
*
* @since v.0.6.1
*/
Expand Down
1 change: 1 addition & 0 deletions dev/restinio/helpers/http_field_parsers/basics.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,7 @@ struct is_vchar_predicate_t
return is_vchar(actual);
}
};

//
// is_obs_text
//
Expand Down
2 changes: 1 addition & 1 deletion dev/restinio/helpers/http_field_parsers/range.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ inline auto
make_other_ranges_specifier_parser()
{
return produce< other_ranges_specifier_t >(
//FIXME: this is just a workaround for the case when
// This not_clause is necessary for the case when
// rule 'bytes=1*VCHAR' doesn't not parsed because of invalid or
// illelal values in '1*VCHAR' part.
not_clause( make_bytes_prefix_parser() ),
Expand Down

0 comments on commit 72cf7e6

Please sign in to comment.