Skip to content
Snippets Groups Projects
Commit bdf3a858 authored by Oliver Sander's avatar Oliver Sander
Browse files

marked constructors as deprecated, to alert the users of this class about its pending removal

[[Imported from SVN: r4815]]
parent 25a3f121
No related branches found
No related tags found
No related merge requests found
......@@ -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)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment