Skip to content

Commit

Permalink
merged
Browse files Browse the repository at this point in the history
  • Loading branch information
DerThorsten committed Oct 16, 2024
1 parent 56cfd93 commit 6e10e01
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions include/sparrow/layout/array_base.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ namespace sparrow
template <class D>
auto array_crtp_base<D>::operator[](size_type i) -> reference
{
SPARROW_ASSERT_TRUE(i < derived_cast().size());
SPARROW_ASSERT_TRUE(i < this->derived_cast().size());
return reference(
inner_reference(derived_cast().value(i)),
derived_cast().has_value(i)
inner_reference(this->derived_cast().value(i)),
this->derived_cast().has_value(i)
);
}

Expand Down Expand Up @@ -219,6 +219,7 @@ namespace sparrow
return const_value_range(this->derived_cast().value_cbegin(), this->derived_cast().value_cend());
}

template <class D>
array_crtp_base<D>::array_crtp_base(arrow_proxy proxy)
: m_proxy(std::move(proxy))
, m_bitmap(make_bitmap())
Expand Down

0 comments on commit 6e10e01

Please sign in to comment.