From dd6e00fdc47a23a161081369a32ad857bba58866 Mon Sep 17 00:00:00 2001
From: Simon Praetorius <simon.praetorius@tu-dresden.de>
Date: Fri, 21 Mar 2025 12:01:14 +0100
Subject: [PATCH] Add assignment operators and copy constructors

---
 dune/common/tensor.hh | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/dune/common/tensor.hh b/dune/common/tensor.hh
index 7a65d177b..c40eeeb74 100644
--- a/dune/common/tensor.hh
+++ b/dune/common/tensor.hh
@@ -164,6 +164,27 @@ public:
     : base_type{Std::mdspan(other)}
   {}
 
+  /// \brief Copy constructor with default behavior
+  constexpr Tensor (const Tensor&) = default;
+
+  /// \brief Move constructor with default behavior
+  constexpr Tensor (Tensor&&) = default;
+
+  /// @}
+
+
+  /// \name Assignment operators
+  /// @{
+
+  /// \brief Assignment operators inherited from the mixin class and storage class
+  using base_type::operator=;
+
+  /// \brief Copy assignment-operator with default behavior
+  constexpr Tensor& operator= (const Tensor&) = default;
+
+  /// \brief Move assignment-operator with default behavior
+  constexpr Tensor& operator= (Tensor&&) = default;
+
   /// @}
 
 
-- 
GitLab