Skip to content

Commit

Permalink
fix: Compilation of detail::complete
Browse files Browse the repository at this point in the history
  • Loading branch information
Tradias committed Sep 16, 2024
1 parent 730de58 commit a1f69e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agrpc/detail/operation_implementation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void complete(Operation& operation, [[maybe_unused]] detail::OperationResult res
operation.template complete<AllocType>(static_cast<decltype(args)&&>(args)...);
}
};
if constexpr (std::is_same_v<detail::GrpcTagOperationBase, typename Operation::Base>)
if constexpr (std::is_same_v<detail::GrpcTagOperationBase, typename Implementation::BaseType>)
{
impl(detail::is_ok(result));
}
Expand Down

0 comments on commit a1f69e7

Please sign in to comment.