LCOV - code coverage report
Current view: top level - url/detail - vformat.hpp (source / functions) Coverage Total Hit
Test: coverage_remapped.info Lines: 100.0 % 5 5
Test Date: 2026-02-25 21:00:01 Functions: 100.0 % 1 1

           TLA  Line data    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 HIT         154 : vformat(
      31                 :     core::string_view fmt,
      32                 :     format_args args)
      33                 : {
      34             154 :     url u;
      35             154 :     vformat_to(u, fmt, args);
      36             144 :     return u;
      37              10 : }
      38                 : 
      39                 : } // detail
      40                 : } // url
      41                 : } // boost
      42                 : 
      43                 : #endif
        

Generated by: LCOV version 2.3