diff liboctave/chMatrix.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 7c8e3c42ed04
line wrap: on
line diff
--- a/liboctave/chMatrix.cc
+++ b/liboctave/chMatrix.cc
@@ -62,7 +62,7 @@
     elem (0, i) = s[i];
 }
 
-charMatrix::charMatrix (const string& s)
+charMatrix::charMatrix (const std::string& s)
   : MArray2<char> ()
 {
   int nc = s.length ();
@@ -128,10 +128,10 @@
   return *this;
 }
 
-string
-charMatrix::row_as_string (int r, bool strip_ws = false) const 
+std::string
+charMatrix::row_as_string (int r, bool strip_ws) const 
 {
-  string retval;
+  std::string retval;
 
   int nr = rows ();
   int nc = cols ();