diff src/oct-strstrm.cc @ 10315:57a59eae83cc

untabify src C++ source files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:41:46 -0500
parents cd96d29c5efa
children fd0a3ac60b0e
line wrap: on
line diff
--- a/src/oct-strstrm.cc	Thu Feb 11 12:23:32 2010 -0500
+++ b/src/oct-strstrm.cc	Thu Feb 11 12:41:46 2010 -0500
@@ -47,21 +47,21 @@
 
 octave_stream
 octave_istrstream::create (const char *data, std::ios::openmode arg_md,
-			   oct_mach_info::float_format flt_fmt)
+                           oct_mach_info::float_format flt_fmt)
 {
   return octave_stream (new octave_istrstream (data, arg_md, flt_fmt));
 }
 
 octave_stream
 octave_istrstream::create (const std::string& data, std::ios::openmode arg_md,
-			   oct_mach_info::float_format flt_fmt)
+                           oct_mach_info::float_format flt_fmt)
 {
   return octave_stream (new octave_istrstream (data, arg_md, flt_fmt));
 }
 
 octave_stream
 octave_ostrstream::create (std::ios::openmode arg_md,
-			   oct_mach_info::float_format flt_fmt)
+                           oct_mach_info::float_format flt_fmt)
 {
   return octave_stream (new octave_ostrstream (arg_md, flt_fmt));
 }