From 39f84c2a191d455db297a645e74ad820335f1d8a Mon Sep 17 00:00:00 2001
From: Christian Engwer <christi@dune-project.org>
Date: Tue, 26 Jul 2005 14:16:19 +0000
Subject: [PATCH] Oh shit! the #else was in the wrong line and everything was
 broken

[[Imported from SVN: r2465]]
---
 common/fvector.hh | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/common/fvector.hh b/common/fvector.hh
index 3270589de..c03e212fb 100644
--- a/common/fvector.hh
+++ b/common/fvector.hh
@@ -564,22 +564,22 @@ namespace Dune {
 
          Implementation of all members uses template meta programs where appropriate
    */
-#else
   template<class K, int SIZE>
   class FieldVector
     : public Dune::ExprTmpl::Vector< FieldVector<K,SIZE> >
-      /** \brief Construct a vector space out of a tensor product of fields.
+#else
+  /** \brief Construct a vector space out of a tensor product of fields.
 
-             K is the field type (use float, double, complex, etc) and n
-             is the number of components.
+         K is the field type (use float, double, complex, etc) and n
+         is the number of components.
 
-             It is generally assumed that K is a numerical type compatible with double
-             (E.g. norms are always computed in double precision).
+         It is generally assumed that K is a numerical type compatible with double
+         (E.g. norms are always computed in double precision).
 
-             Implementation of all members uses template meta programs where appropriate
-       */
-      template<class K, int SIZE>
-      class FieldVector
+         Implementation of all members uses template meta programs where appropriate
+   */
+  template<class K, int SIZE>
+  class FieldVector
 #endif
   {
     //! The actual number of elements that gets allocated.
-- 
GitLab