7 struct MakeErrorFunction {
8 template<
typename... Args>
9 constexpr auto operator()(concepts::ParserContext
auto& context, Args&&... args)
const {
10 if constexpr (
requires { context.make_error(util::forward<Args>(args)...); }) {
11 return context.make_error(util::forward<Args>(args)...);
13 return context.make_error();
19constexpr inline auto make_error = detail::MakeErrorFunction {};
Definition code_point_parser.h:10
constexpr auto make_error
Definition make_error.h:19