diff liboctave/mach-info.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 7da18459c08b
line wrap: on
line diff
--- a/liboctave/mach-info.cc	Tue Feb 01 04:06:39 2000 +0000
+++ b/liboctave/mach-info.cc	Tue Feb 01 10:07:26 2000 +0000
@@ -186,7 +186,7 @@
 }
 
 oct_mach_info::float_format
-oct_mach_info::string_to_float_format (const string& s)
+oct_mach_info::string_to_float_format (const std::string& s)
 {
   oct_mach_info::float_format retval = oct_mach_info::unknown;
 
@@ -211,10 +211,10 @@
   return retval;
 }
 
-string
+std::string
 oct_mach_info::float_format_as_string (float_format flt_fmt)
 {
-  string retval = "unknown";
+  std::string retval = "unknown";
 
   switch (flt_fmt)
     {