From 4585ff6c698c020e0b7bff80e377cfa2fc4fdfe5 Mon Sep 17 00:00:00 2001 From: Felix Schindler <felix.schindler@wwu.de> Date: Sat, 5 Aug 2017 18:16:03 +0200 Subject: [PATCH] [bindings|spaces.constraints] update Assembler signature --- dune/gdt/spaces/constraints.bindings.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dune/gdt/spaces/constraints.bindings.hh b/dune/gdt/spaces/constraints.bindings.hh index 970f01cde..d19f48fb4 100644 --- a/dune/gdt/spaces/constraints.bindings.hh +++ b/dune/gdt/spaces/constraints.bindings.hh @@ -111,7 +111,7 @@ private: struct addbind_assembler { template <class GL, class A> - void operator()(pybind11::class_<GDT::SystemAssembler<T, GL, A>>& bound_system_assembler) + void operator()(pybind11::class_<GDT::SystemAssembler<T, GL, A>, XT::Grid::Walker<GL>>& bound_system_assembler) { using namespace pybind11::literals; @@ -128,14 +128,14 @@ private: struct addbind_assembler<T, false> { template <class GL, class A> - void operator()(pybind11::class_<GDT::SystemAssembler<T, GL, A>>& /*bound_system_assembler*/) + void operator()(pybind11::class_<GDT::SystemAssembler<T, GL, A>, XT::Grid::Walker<GL>>& /*bound_system_assembler*/) { } }; public: template <class T, class GL, class A> - static void addbind(pybind11::class_<GDT::SystemAssembler<T, GL, A>>& bound_system_assembler) + static void addbind(pybind11::class_<GDT::SystemAssembler<T, GL, A>, XT::Grid::Walker<GL>>& bound_system_assembler) { addbind_assembler<T>()(bound_system_assembler); } -- GitLab