From 33793999926c629db1fc3a156e8312a02680a1d3 Mon Sep 17 00:00:00 2001
From: Adrian Burri <burriad@dune-project.org>
Date: Wed, 9 Mar 2005 12:30:25 +0000
Subject: [PATCH] Removed default argument in constructor of RestProlOperator

[[Imported from SVN: r1641]]
---
 fem/transfer/adaptoperator.hh | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/fem/transfer/adaptoperator.hh b/fem/transfer/adaptoperator.hh
index a710611f6..f6b360117 100644
--- a/fem/transfer/adaptoperator.hh
+++ b/fem/transfer/adaptoperator.hh
@@ -277,8 +277,8 @@ namespace Dune {
 
   //***********************************************************************
 
-  /** \brief ???
-   * \todo Please doc me!
+  /** \brief I suppose it does the restriction/prolongation for FV
+   *
    */
   template <class DiscreteFunctionType>
   class RestProlOperatorFV
@@ -289,9 +289,9 @@ namespace Dune {
     typedef typename DiscreteFunctionType::DomainType DomainType;
     typedef BaryCenterQuad < RangeFieldType , DomainType , 0 > BaryQuadType;
   public:
-    //! ???
-    RestProlOperatorFV ( DiscreteFunctionType & df , GeometryType eltype = tetrahedron  ) : df_ (df) ,
-                                                                                            vati_ ( df_.newLocalFunction() ) , sohn_ ( df_.newLocalFunction() ) , quad_(eltype) , weight_(-1.0)
+    //! Constructor
+    RestProlOperatorFV ( DiscreteFunctionType & df , GeometryType eltype ) : df_ (df) ,
+                                                                             vati_ ( df_.newLocalFunction() ) , sohn_ ( df_.newLocalFunction() ) , quad_(eltype) , weight_(-1.0)
     {}
 
     template <class EntityType>
-- 
GitLab