Skip to content

Commit

Permalink
Removed copy and move semantics of dictionary_encoded_layout
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Apr 8, 2024
1 parent 8d7c2b2 commit 398c200
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions include/sparrow/dictionary_encoded_layout.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,11 @@ namespace sparrow
using const_value_range = std::ranges::subrange<const_value_iterator, const_value_iterator>;

explicit dictionary_encoded_layout(array_data& data);

dictionary_encoded_layout(const dictionary_encoded_layout&) = delete;
dictionary_encoded_layout& operator=(const dictionary_encoded_layout&) = delete;
dictionary_encoded_layout(dictionary_encoded_layout&&) = delete;
dictionary_encoded_layout& operator=(dictionary_encoded_layout&&) = delete;

size_type size() const;
const_reference operator[](size_type i) const;
Expand Down

0 comments on commit 398c200

Please sign in to comment.