diff src/error.cc @ 3523:b80bbb43a1a9

[project @ 2000-02-02 10:25:52 by jwe]
author jwe
date Wed, 02 Feb 2000 10:26:25 +0000
parents d14c483b3c12
children 97cf542676e1
line wrap: on
line diff
--- a/src/error.cc	Wed Feb 02 06:32:04 2000 +0000
+++ b/src/error.cc	Wed Feb 02 10:26:25 2000 +0000
@@ -54,7 +54,7 @@
 bool buffer_error_messages = false;
 
 // The message buffer
-ostrstream *error_message_buffer = 0;
+std::ostrstream *error_message_buffer = 0;
 
 // Warning messages are never buffered.
 // XXX FIXME XXX -- we should provide another way to turn them off...
@@ -64,7 +64,7 @@
 {
   flush_octave_stdout ();
 
-  ostrstream output_buf;
+  std::ostrstream output_buf;
 
   if (name)
     {
@@ -86,7 +86,7 @@
 
   bool to_beep_or_not_to_beep_p = Vbeep_on_error && ! error_state;
 
-  ostrstream output_buf;
+  std::ostrstream output_buf;
 
   if (to_beep_or_not_to_beep_p)
     output_buf << "\a";
@@ -240,7 +240,7 @@
 {
   octave_value_list retval;
 
-  string tstr;
+  std::string tstr;
 
   int nargin = args.length ();