Mercurial > hg > octave-lyh
diff liboctave/dRowVector.cc @ 3504:5eef8a2294bd
[project @ 2000-02-01 10:06:51 by jwe]
author | jwe |
---|---|
date | Tue, 01 Feb 2000 10:07:26 +0000 |
parents | d14c483b3c12 |
children | 2923f52d8fda |
line wrap: on
line diff
--- a/liboctave/dRowVector.cc +++ b/liboctave/dRowVector.cc @@ -304,8 +304,8 @@ return res; } -ostream& -operator << (ostream& os, const RowVector& a) +std::ostream& +operator << (std::ostream& os, const RowVector& a) { // int field_width = os.precision () + 7; @@ -314,13 +314,13 @@ return os; } -istream& -operator >> (istream& is, RowVector& a) +std::istream& +operator >> (std::istream& is, RowVector& a) { int len = a.length(); if (len < 1) - is.clear (ios::badbit); + is.clear (std::ios::badbit); else { double tmp;