diff src/oct-iostrm.h @ 10313:f3b65e1ae355

untabify src header files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:16:43 -0500
parents cd96d29c5efa
children fd0a3ac60b0e
line wrap: on
line diff
--- a/src/oct-iostrm.h	Thu Feb 11 12:14:48 2010 -0500
+++ b/src/oct-iostrm.h	Thu Feb 11 12:16:43 2010 -0500
@@ -34,9 +34,9 @@
 public:
 
   octave_base_iostream (const std::string& n = std::string (),
-			std::ios::openmode m = std::ios::in|std::ios::out,
-			oct_mach_info::float_format ff
-			  = oct_mach_info::native_float_format ())
+                        std::ios::openmode m = std::ios::in|std::ios::out,
+                        oct_mach_info::float_format ff
+                          = oct_mach_info::native_float_format ())
     : octave_base_stream (m, ff), nm (n) { }
 
   // Position a stream at OFFSET relative to ORIGIN.
@@ -81,7 +81,7 @@
 
   octave_istream (std::istream *arg = 0, const std::string& n = std::string ())
     : octave_base_iostream (n, std::ios::in,
-			    oct_mach_info::native_float_format ()),
+                            oct_mach_info::native_float_format ()),
       is (arg)
   { }
 
@@ -120,7 +120,7 @@
 
   octave_ostream (std::ostream *arg, const std::string& n = std::string ())
     : octave_base_iostream (n, std::ios::out,
-			    oct_mach_info::native_float_format ()),
+                            oct_mach_info::native_float_format ()),
       os (arg)
   { }