• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

STEllAR-GROUP / hpx / #882

31 Aug 2023 07:44PM UTC coverage: 41.798% (-44.7%) from 86.546%
#882

push

19442 of 46514 relevant lines covered (41.8%)

126375.38 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/libs/core/format/src/util/bad_lexical_cast.cpp
1
//  Copyright (c) 2019 Agustin Berge
2
//
3
//  SPDX-License-Identifier: BSL-1.0
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
#include <hpx/util/bad_lexical_cast.hpp>
8

9
#include <typeinfo>
10

11
namespace hpx::util {
12

13
    char const* bad_lexical_cast::what() const noexcept
×
14
    {
15
        return "bad lexical cast: source type value could not be interpreted "
16
               "as target";
×
17
    }
18

19
    bad_lexical_cast::~bad_lexical_cast() noexcept = default;
×
20

21
    namespace detail {
22

23
        void throw_bad_lexical_cast(std::type_info const& source_type,
×
24
            std::type_info const& target_type)
25
        {
26
            throw bad_lexical_cast(source_type, target_type);
×
27
        }
28
    }    // namespace detail
29
}    // namespace hpx::util
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc