GCC Code Coverage Report


Directory: libs/http_proto/include/boost/http_proto/
File: boost/http_proto/rfc/impl/parameter.ipp
Date: 2023-02-02 18:17:22
Exec Total Coverage
Lines: 0 2 0.0%
Functions: 0 1 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 //
2 // Copyright (c) 2021 Vinnie Falco (vinnie dot falco at gmail dot com)
3 //
4 // Distributed under the Boost Software License, Version 1.0. (See accompanying
5 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 //
7 // Official repository: https://github.com/CPPAlliance/http_proto
8 //
9
10 #ifndef BOOST_HTTP_PROTO_RFC_IMPL_PARAMETER_IPP
11 #define BOOST_HTTP_PROTO_RFC_IMPL_PARAMETER_IPP
12
13 #include <boost/http_proto/rfc/parameter.hpp>
14 #include <boost/url/grammar/parse.hpp>
15
16 namespace boost {
17 namespace http_proto {
18
19 auto
20 parameter_rule_t::
21 parse(
22 char const*& it,
23 char const* end) const noexcept ->
24 result<value_type>
25 {
26 (void)it;
27 (void)end;
28 return error_code{};
29 }
30
31 } // http_proto
32 } // boost
33
34 #endif
35