Skip to content

Commit

Permalink
Add TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-PLACET committed Apr 8, 2024
1 parent 2763452 commit 1a4959d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion include/sparrow/typed_array.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ template <class T, class L = get_default_layout_t<T>>
class typed_array
{
public:

using layout_type = L;

using reference = typename layout_type::reference;
Expand Down
4 changes: 3 additions & 1 deletion test/test_typed_array.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace
ad.buffers.push_back(b);
ad.length = n;
ad.offset = offset;
ad.child_data.push_back(array_data());
ad.child_data.emplace_back();
return ad;
}

Expand Down Expand Up @@ -91,6 +91,8 @@ TEST_SUITE("typed_array")
CHECK_EQ(typed_array_empty.cbegin(), typed_array_empty.cend());
}

// TODO: Add tests for const_iterator: cbegin, cend

TEST_CASE("bitmap")
{
const auto array_data = make_test_array_data(10, 1);
Expand Down

0 comments on commit 1a4959d

Please sign in to comment.