From ef77579ea2787c180c88763927405120908971b6 Mon Sep 17 00:00:00 2001
From: Felix Schindler <felix.schindler@wwu.de>
Date: Mon, 17 Aug 2020 13:15:51 +0200
Subject: [PATCH] [functions] fix DerivativeRangeTypeSelector

---
 dune/xt/functions/type_traits.hh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dune/xt/functions/type_traits.hh b/dune/xt/functions/type_traits.hh
index c5657be1c..b844e8fc7 100644
--- a/dune/xt/functions/type_traits.hh
+++ b/dune/xt/functions/type_traits.hh
@@ -126,8 +126,8 @@ struct RangeTypeSelector<R, r, 1>
 template <size_t d, class R, size_t r, size_t rC>
 struct DerivativeRangeTypeSelector
 {
-  using single_type = XT::Common::FieldVector<R, d>;
-  using return_single_type = FieldVector<R, d>;
+  using single_type = FieldVector<R, d>;
+  using return_single_type = XT::Common::FieldVector<R, d>;
   using dynamic_single_type = DynamicVector<R>;
 
   using row_derivative_type = FieldMatrix<R, rC, d>;
-- 
GitLab