File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -389,7 +389,7 @@ enum class field : unsigned short
389389*/
390390BOOST_HTTP_PROTO_DECL
391391core::string_view
392- to_string (field f) noexcept ;
392+ to_string (field f);
393393
394394/* * Return the field name constant for a header name.
395395
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ enum class version : char
3333*/
3434BOOST_HTTP_PROTO_DECL
3535core::string_view
36- to_string (version v) noexcept ;
36+ to_string (version v);
3737
3838/* * Format the version to an output stream.
3939
Original file line number Diff line number Diff line change @@ -552,7 +552,7 @@ get_field_table() noexcept
552552} // detail
553553
554554core::string_view
555- to_string (field f) noexcept
555+ to_string (field f)
556556{
557557 auto const & v = detail::get_field_table ();
558558 BOOST_ASSERT (static_cast <unsigned >(f) < v.size ());
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ namespace http_proto {
1515
1616core::string_view
1717to_string (
18- version v) noexcept
18+ version v)
1919{
2020 switch (v)
2121 {
You can’t perform that action at this time.
0 commit comments