diff liboctave/lo-utils.cc @ 3504:5eef8a2294bd

[project @ 2000-02-01 10:06:51 by jwe]
author jwe
date Tue, 01 Feb 2000 10:07:26 +0000
parents 66ef74ee5d9f
children 4f884e25aab9
line wrap: on
line diff
--- a/liboctave/lo-utils.cc	Tue Feb 01 04:06:39 2000 +0000
+++ b/liboctave/lo-utils.cc	Tue Feb 01 10:07:26 2000 +0000
@@ -86,7 +86,7 @@
 // SMART_PUTENV.
 
 void
-octave_putenv (const string& name, const string& value)
+octave_putenv (const std::string& name, const std::string& value)
 {
   int new_len = name.length () + value.length () + 2;
 
@@ -101,10 +101,10 @@
     (*current_liboctave_error_handler) ("putenv (%s) failed", new_item);
 }
 
-string
+std::string
 octave_fgets (FILE *f)
 {
-  string retval;
+  std::string retval;
 
   int grow_size = 1024;
   int max_size = grow_size;