Skip to content

Commit 1b686ec

Browse files
authored
Remove extra this pointer from frexp lambda (#1090)
1 parent 6b3b815 commit 1b686ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/matx/operators/frexp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ namespace detail {
9999
template <typename CapType, typename... Is>
100100
__MATX_INLINE__ __MATX_DEVICE__ __MATX_HOST__ auto operator()(Is... indices) const
101101
{
102-
auto get_scalar = [this](const auto &x){
102+
auto get_scalar = [](const auto &x){
103103
[[maybe_unused]] int rexp;
104104
if constexpr (is_cuda_complex_v<value_type>) {
105105
if constexpr (std::is_same_v<float, typename value_type::value_type>) {

0 commit comments

Comments
 (0)