From bdf3a85868970bf1ef9990c00b828b12e93cd1da Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@dune-project.org>
Date: Wed, 13 Dec 2006 10:40:40 +0000
Subject: [PATCH] marked constructors as deprecated, to alert the users of this
 class about its pending removal

[[Imported from SVN: r4815]]
---
 common/simplevector.hh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/common/simplevector.hh b/common/simplevector.hh
index 703e63614..acdef3268 100644
--- a/common/simplevector.hh
+++ b/common/simplevector.hh
@@ -21,13 +21,13 @@ namespace Dune
 
   //! A simple vector class
   template <class T>
-  class SimpleVector : public Array<T> {
+  class SimpleVector : public Array<T>  {
   public:
     //! make empty vector
-    SimpleVector() {};
+    SimpleVector() DUNE_DEPRECATED {};
 
     //! make array with m components
-    explicit SimpleVector(int m) : Array<T>::Array(m) {}
+    explicit SimpleVector(int m) DUNE_DEPRECATED : Array<T>::Array(m) {}
 
     SimpleVector<T>& operator= (const T t)
     {
-- 
GitLab