From 34eff70d35e47cc780b7d32e1a7bdd10a5c08376 Mon Sep 17 00:00:00 2001 From: Johan Mabille Date: Fri, 15 Mar 2024 13:34:45 +0100 Subject: [PATCH] Windows fix --- include/sparrow/array_data.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/sparrow/array_data.hpp b/include/sparrow/array_data.hpp index 88a0a576..99a64f85 100644 --- a/include/sparrow/array_data.hpp +++ b/include/sparrow/array_data.hpp @@ -78,13 +78,13 @@ namespace sparrow self_type& operator=(self_type&& rhs); self_type& operator=(std::nullopt_t); - template U> + template U> self_type& operator=(const std::optional& rhs); - template U> + template U> self_type& operator=(std::optional&& rhs); - template U> + template U> self_type& operator=(U&& value); void reset();