diff src/ov-usr-fcn.h @ 3523:b80bbb43a1a9

[project @ 2000-02-02 10:25:52 by jwe]
author jwe
date Wed, 02 Feb 2000 10:26:25 +0000
parents 2efa28a91e7a
children 71bd2d124119
line wrap: on
line diff
--- a/src/ov-usr-fcn.h	Wed Feb 02 06:32:04 2000 +0000
+++ b/src/ov-usr-fcn.h	Wed Feb 02 10:26:25 2000 +0000
@@ -78,7 +78,7 @@
   void stash_symtab_ptr (symbol_record *sr)
     { symtab_entry = sr; }
 
-  string fcn_file_name (void) const
+  std::string fcn_file_name (void) const
     { return file_name; }
 
   octave_time time_parsed (void) const
@@ -105,9 +105,9 @@
 
   void octave_vr_val (const octave_value& val);
 
-  void stash_function_name (const string& s);
+  void stash_function_name (const std::string& s);
 
-  string function_name (void)
+  std::string function_name (void)
     { return fcn_name; }
 
   void clear_args_passed (void)
@@ -145,10 +145,10 @@
   symbol_table *sym_tab;
 
   // The name of the file we parsed
-  string file_name;
+  std::string file_name;
 
   // The name of the function.
-  string fcn_name;
+  std::string fcn_name;
 
   // The time the file was parsed.
   octave_time t_parsed;