Skip to content

Commit

Permalink
Minor fixes and optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Jan 6, 2025
1 parent 8029d34 commit 6eb3152
Show file tree
Hide file tree
Showing 23 changed files with 657 additions and 378 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ namespace hpx {
template <typename, typename>
friend class const_partitioned_vector_local_view_iterator;

DataType& dereference() const
DataType& dereference()
{
HPX_ASSERT(!is_at_end());
return this->base_reference()->data();
}
DataType const& dereference() const
{
HPX_ASSERT(!is_at_end());
return this->base_reference()->data();
Expand Down
Loading

0 comments on commit 6eb3152

Please sign in to comment.