diff --git a/common/fvector.hh b/common/fvector.hh index 918623711dabdddfb3a2c56bb3ccbac3a93a0320..d8cc8180ce5c4deb43bbe1fc707b1f578c292161 100644 --- a/common/fvector.hh +++ b/common/fvector.hh @@ -767,17 +767,6 @@ namespace Dune { return SIZE; } - /** \brief Send vector to output stream - \deprecated Use operator << instead */ - void print (std::ostream& s) const DUNE_DEPRECATED - { - for (size_type i=0; i<SIZE; i++) - if (i>0) - s << " " << p[i]; - else - s << p[i]; - } - private: // the data, very simply a built in array K p[(SIZE > 0) ? SIZE : 1]; @@ -1108,12 +1097,6 @@ namespace Dune { return 1; } - /** \brief Send vector to output stream - \deprecated Use operator << instead */ - void print (std::ostream& s) const DUNE_DEPRECATED - { - s << p; - } //===== conversion operator /** \brief Conversion operator */