Skip to content

Commit

Permalink
Resolve build error
Browse files Browse the repository at this point in the history
  • Loading branch information
mingxwa committed Mar 2, 2024
1 parent 1bcaf94 commit 2f2d59e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions proxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -551,10 +551,9 @@ class proxy {
noexcept(HasNothrowInvocation<D, Args...>)
requires(Traits::template has_dispatch<D> &&
requires { typename MatchedOverload<D, Args...>; }) {
using meta_type = details::dispatcher_meta<
typename details::overload_traits<
MatchedOverload<D, Args...>>::template meta_provider<D>>;
return meta_->meta_type::dispatcher(ptr_, std::forward<Args>(args)...);
return meta_->template dispatcher_meta<typename details::overload_traits<
MatchedOverload<D, Args...>>::template meta_provider<D>>
::dispatcher(ptr_, std::forward<Args>(args)...);
}
template <class... Args>
decltype(auto) operator()(Args&&... args) const
Expand Down

0 comments on commit 2f2d59e

Please sign in to comment.