diff src/oct-fstrm.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 479cc8a0a846
line wrap: on
line diff
--- a/src/oct-fstrm.cc
+++ b/src/oct-fstrm.cc
@@ -33,14 +33,14 @@
 
 octave_stream
 octave_fstream::create (const std::string& nm_arg, std::ios::openmode arg_md,
-			oct_mach_info::float_format ff)
+                        oct_mach_info::float_format ff)
 {
   return octave_stream (new octave_fstream (nm_arg, arg_md, ff));
 }
 
 octave_fstream::octave_fstream (const std::string& nm_arg,
-				std::ios::openmode arg_md,
-				oct_mach_info::float_format ff)
+                                std::ios::openmode arg_md,
+                                oct_mach_info::float_format ff)
   : octave_base_stream (arg_md, ff), nm (nm_arg)
 {