diff src/oct-stream.h @ 5765:7ba9ad1fec11

[project @ 2006-04-17 05:05:15 by jwe]
author jwe
date Mon, 17 Apr 2006 05:05:17 +0000
parents 960f4b9a26af
children c68896f193e3
line wrap: on
line diff
--- a/src/oct-stream.h	Sun Apr 16 19:10:01 2006 +0000
+++ b/src/oct-stream.h	Mon Apr 17 05:05:17 2006 +0000
@@ -30,11 +30,11 @@
 class octave_value_list;
 
 #include <iostream>
+#include <sstream>
 #include <string>
 
 #include "Array.h"
 #include "data-conv.h"
-#include "lo-sstream.h"
 #include "lo-utils.h"
 #include "mach-info.h"
 
@@ -160,7 +160,7 @@
   Array<scanf_format_elt*> list;
 
   // Temporary buffer.
-  OSSTREAM *buf;
+  std::ostringstream *buf;
 
   void add_elt_to_list (int width, bool discard, char type, char modifier,
 			int& num_elts,
@@ -292,7 +292,7 @@
   Array<printf_format_elt*> list;
 
   // Temporary buffer.
-  OSSTREAM *buf;
+  std::ostringstream *buf;
 
   void add_elt_to_list (int args, const std::string& flags, int fw,
 			int prec, char type, char modifier,