From cff80ff3becffe75e10d90a0be573c9b9f9318f4 Mon Sep 17 00:00:00 2001
From: Tobias Leibner <tobias.leibner@googlemail.com>
Date: Thu, 13 Jun 2019 10:07:07 +0200
Subject: [PATCH] fix headercheck

---
 dune/gdt/operators/reconstruction/linear_kinetic.hh | 3 +--
 dune/gdt/test/entropic-coords-mn-discretization.hh  | 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/dune/gdt/operators/reconstruction/linear_kinetic.hh b/dune/gdt/operators/reconstruction/linear_kinetic.hh
index 30ec756c7..2fa385508 100644
--- a/dune/gdt/operators/reconstruction/linear_kinetic.hh
+++ b/dune/gdt/operators/reconstruction/linear_kinetic.hh
@@ -127,7 +127,7 @@ class PointwiseLinearKineticReconstructionOperator
 public:
   using BoundaryValueType = BoundaryValueImp;
   using E = XT::Grid::extract_entity_t<GV>;
-  using EigenVectorWrapperType = DummyEigenVectorWrapper<LocalVectorType>;
+  using EigenVectorWrapperType = internal::DummyEigenVectorWrapper<AnalyticalFluxType, LocalVectorType>;
   using R = typename BoundaryValueType::R;
   static constexpr size_t dimDomain = BoundaryValueType::d;
   static constexpr size_t dimRange = BoundaryValueType::r;
@@ -159,7 +159,6 @@ public:
     const auto& grid_view = space_.grid_view();
     const auto& index_set = grid_view.indexSet();
     std::vector<LocalVectorType> source_values(index_set.size(0));
-    // Contains the evaluations of exp(alpha^T b(v_i)) at each quadrature point v_i
     auto source_func = make_discrete_function(space_, source);
     const auto local_source = source_func.local_function();
     for (const auto& entity : Dune::elements(grid_view)) {
diff --git a/dune/gdt/test/entropic-coords-mn-discretization.hh b/dune/gdt/test/entropic-coords-mn-discretization.hh
index b6b24fa66..ff226bc18 100644
--- a/dune/gdt/test/entropic-coords-mn-discretization.hh
+++ b/dune/gdt/test/entropic-coords-mn-discretization.hh
@@ -23,7 +23,6 @@
 #include <dune/gdt/operators/advection-fv-entropybased.hh>
 #include <dune/gdt/operators/advection-fv.hh>
 #include <dune/gdt/operators/generic.hh>
-#include <dune/gdt/operators/reconstruction/linear_nocharacteristiccoords.hh>
 #include <dune/gdt/operators/reconstruction/linear_kinetic.hh>
 #include <dune/gdt/interpolations/default.hh>
 #include <dune/gdt/momentmodels/hessianinverter.hh>
-- 
GitLab