From 8186b24ca68fcb1340b338c61e9c4dfbe672816c Mon Sep 17 00:00:00 2001
From: guido <guido@0785d39b-7218-0410-832d-ea1e28bc413d>
Date: Mon, 6 May 2002 11:30:37 +0000
Subject: [PATCH] spurious const removed

git-svn-id: https://svn.dealii.org/trunk@5823 0785d39b-7218-0410-832d-ea1e28bc413d
---
 deal.II/base/include/base/function_lib.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/deal.II/base/include/base/function_lib.h b/deal.II/base/include/base/function_lib.h
index 6a94b57b48..b462dc2270 100644
--- a/deal.II/base/include/base/function_lib.h
+++ b/deal.II/base/include/base/function_lib.h
@@ -837,12 +837,12 @@ namespace Functions
       				       /**
 					* Center of the integration ball.
 					*/
-      const Point<dim> center;
+      Point<dim> center;
 
 				       /**
 					* Radius of the ball.
 					*/
-      const double radius;
+      double radius;
 
 				       /**
 					* Component selected. If
-- 
2.39.5