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

STEllAR-GROUP / hpx / #852

17 Dec 2022 04:43PM UTC coverage: 85.912% (-0.7%) from 86.568%
#852

push

StellarBot
Merge #6106

6106: Modernizing modules of levels 0 to 5 r=hkaiser a=hkaiser

- flyby: HPX_FORWARD/HPX_MOVE now expand to std::forward and std::move if those are implemented as builtin functions

working towards #5497

Co-authored-by: Hartmut Kaiser <hartmut.kaiser@gmail.com>

87 of 87 new or added lines in 24 files covered. (100.0%)

173152 of 201546 relevant lines covered (85.91%)

1910264.28 hits per line

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

40.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
    const char* 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;
1✔
20

21
    namespace detail {
22

23
        void throw_bad_lexical_cast(std::type_info const& source_type,
1✔
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