libs/url/include/boost/url/detail/vformat.hpp

100.0% Lines (5/5) 100.0% Functions (1/1) 100.0% Branches (1/1)
libs/url/include/boost/url/detail/vformat.hpp
Line Branch Hits Source Code
1 //
2 // Copyright (c) 2022 Alan de Freitas (alandefreitas@gmail.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/boostorg/url
8 //
9
10 #ifndef BOOST_URL_DETAIL_FORMAT_HPP
11 #define BOOST_URL_DETAIL_FORMAT_HPP
12
13 #include <boost/url/detail/format_args.hpp>
14 #include <boost/core/detail/string_view.hpp>
15 #include <boost/url/url.hpp>
16
17 namespace boost {
18 namespace urls {
19 namespace detail {
20
21 BOOST_URL_DECL
22 void
23 vformat_to(
24 url_base& u,
25 core::string_view fmt,
26 format_args args);
27
28 inline
29 url
30 150 vformat(
31 core::string_view fmt,
32 format_args args)
33 {
34 150 url u;
35
1/1
✓ Branch 1 taken 140 times.
150 vformat_to(u, fmt, args);
36 140 return u;
37 10 }
38
39 } // detail
40 } // url
41 } // boost
42
43 #endif
44