File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ namespace boost { namespace network { namespace uri {
14
14
namespace detail {
15
15
16
16
template <class Range , class Tag >
17
- bool parse_specific (Range & range, uri_parts<Tag> & parts) {
17
+ inline bool parse_specific (Range & range, uri_parts<Tag> & parts) {
18
18
return true ;
19
19
}
20
20
21
21
template <class Range , class Tag >
22
- bool parse_uri (Range & range, uri_parts<Tag> & parts) {
22
+ inline bool parse_uri (Range & range, uri_parts<Tag> & parts) {
23
23
using spirit::qi::parse;
24
24
using spirit::qi::lexeme;
25
25
using spirit::ascii::char_;
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ namespace boost { namespace network { namespace uri {
43
43
};
44
44
45
45
template <>
46
- bool parse_specific<
46
+ inline bool parse_specific<
47
47
string<tags::http>::type,
48
48
tags::http
49
49
>(
You can’t perform that action at this time.
0 commit comments