Skip to content

Commit

Permalink
Windows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Mar 15, 2024
1 parent 8e7384c commit 34eff70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/sparrow/array_data.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ namespace sparrow
self_type& operator=(self_type&& rhs);
self_type& operator=(std::nullopt_t);

template <std::convertible_to<value_type> U>
template <std::convertible_to<typename L::inner_value_type> U>
self_type& operator=(const std::optional<U>& rhs);

template <std::convertible_to<value_type> U>
template <std::convertible_to<typename L::inner_value_type> U>
self_type& operator=(std::optional<U>&& rhs);

template <std::convertible_to<value_type> U>
template <std::convertible_to<typename L::inner_value_type> U>
self_type& operator=(U&& value);

void reset();
Expand Down

0 comments on commit 34eff70

Please sign in to comment.