diff --git a/dune/gdt/playground/spaces/raviartthomas/fem-localfunctions.hh b/dune/gdt/playground/spaces/raviartthomas/fem-localfunctions.hh
index 0ebf520d0d72b73cf6acc8048ecd9126f7855a2b..8b61a2a00d4ffa936c90f8cde67b1b85c742d40a 100644
--- a/dune/gdt/playground/spaces/raviartthomas/fem-localfunctions.hh
+++ b/dune/gdt/playground/spaces/raviartthomas/fem-localfunctions.hh
@@ -9,4 +9,23 @@
 #warning This header is deprecated, include <dune/gdt/playground/spaces/rt/fem-localfunctions.hh> instead (21.11.2014)!
 #include <dune/gdt/playground/spaces/rt/fem-localfunctions.hh>
 
+namespace RaviartThomas {
+
+
+template <class GridPartImp, int polynomialOrder, class RangeFieldImp, int rangeDim, int rangeDimCols = 1>
+class DUNE_DEPRECATED_MSG("Use RT::FemLocalfunctionsBased instead (21.11.2014)!") FemLocalfunctionsBased
+    : public RT::FemLocalfunctionsBased<GridPartImp, polynomialOrder, RangeFieldImp, rangeDim, rangeDimCols>
+{
+public:
+  template <class... Args>
+  FemLocalfunctionsBased(Args&&... args)
+    : RT::FemLocalfunctionsBased<GridPartImp, polynomialOrder, RangeFieldImp, rangeDim, rangeDimCols>(
+          std::forward<Args>(args)...)
+  {
+  }
+};
+
+
+} // namespace RaviartThomas
+
 #endif // DUNE_GDT_PLAYGROUND_SPACES_RAVIARTTHOMAS_FEM_LOCALFUNCTIONS_HH
diff --git a/dune/gdt/playground/spaces/rt/fem-localfunctions.hh b/dune/gdt/playground/spaces/rt/fem-localfunctions.hh
index a57d143a1471bae16a670da958e1b54d51c85c39..7eafa1d04907e8a6fdc06aef20263bbe2d301279 100644
--- a/dune/gdt/playground/spaces/rt/fem-localfunctions.hh
+++ b/dune/gdt/playground/spaces/rt/fem-localfunctions.hh
@@ -225,24 +225,6 @@ class FemLocalfunctionsBased
 
 
 } // namespace RT
-namespace RaviartThomas {
-
-
-template <class GridPartImp, int polynomialOrder, class RangeFieldImp, int rangeDim, int rangeDimCols = 1>
-class DUNE_DEPRECATED_MSG("Use RT::FemLocalfunctionsBased instead (21.11.2014)!") FemLocalfunctionsBased
-    : public RT::FemLocalfunctionsBased<GridPartImp, polynomialOrder, RangeFieldImp, rangeDim, rangeDimCols>
-{
-public:
-  template <class... Args>
-  FemLocalfunctionsBased(Args&&... args)
-    : RT::FemLocalfunctionsBased<GridPartImp, polynomialOrder, RangeFieldImp, rangeDim, rangeDimCols>(
-          std::forward<Args>(args)...)
-  {
-  }
-};
-
-
-} // namespace RaviartThomas
 } // namespace Spaces
 } // namespace GDT
 } // namespace Dune