MCPcopy Create free account
hub / github.com/celtera/libremidi / construct_error_impl

Function construct_error_impl

include/libremidi/system_error2.hpp:2278–2284  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2276
2277template <class E, class... Args>
2278constexpr auto construct_error_impl(
2279 is_convertible_to_error_using_traits<error_ctor_args<E>>,
2280 Args&&... args
2281 ) noexcept(noexcept(error_traits<E>::to_error(std::declval<Args&&>()...)))
2282{
2283 return error_traits<E>::to_error(std::forward<Args>(args)...);
2284}
2285
2286template <class A1, class A2, class... Args>
2287constexpr auto construct_error_impl(

Callers 1

errorFunction · 0.85

Calls 1

construct_error_from_adlFunction · 0.85

Tested by

no test coverage detected