From ff1f53d4a5a2f99884d7ed1009a00521eff075a1 Mon Sep 17 00:00:00 2001 From: Tobias Leibner <tobias.leibner@googlemail.com> Date: Fri, 21 Nov 2014 14:41:16 +0100 Subject: [PATCH] [spaces.interface] fix documentation --- dune/gdt/spaces/interface.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dune/gdt/spaces/interface.hh b/dune/gdt/spaces/interface.hh index 7be6683b4..b2b94f725 100644 --- a/dune/gdt/spaces/interface.hh +++ b/dune/gdt/spaces/interface.hh @@ -140,8 +140,8 @@ public: * * \note Any derived class has to implement this method, even if it does not support any kind of constraints! * In that case just provide exactly the following method:\code -template< class S, class ConstraintsType > -void local_constraints(const SpaceInterface< S >&, const EntityType&, ConstraintsType&) const +template< class S, int d, int r, int rC, class ConstraintsType > +void local_constraints(const SpaceInterface< S, d, r, rC > >&, const EntityType&, ConstraintsType&) const { static_assert(AlwaysFalse< S >::value, "Not implemented for these constraints!"); } -- GitLab