Mercurial > hg > octave-lyh
diff liboctave/CRowVector.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 | 6ae6f1180e62 |
line wrap: on
line diff
--- a/liboctave/CRowVector.cc +++ b/liboctave/CRowVector.cc @@ -712,8 +712,8 @@ // i/o -ostream& -operator << (ostream& os, const ComplexRowVector& a) +std::ostream& +operator << (std::ostream& os, const ComplexRowVector& a) { // int field_width = os.precision () + 7; for (int i = 0; i < a.length (); i++) @@ -721,13 +721,13 @@ return os; } -istream& -operator >> (istream& is, ComplexRowVector& a) +std::istream& +operator >> (std::istream& is, ComplexRowVector& a) { int len = a.length(); if (len < 1) - is.clear (ios::badbit); + is.clear (std::ios::badbit); else { Complex tmp;