Mercurial > hg > octave-lyh
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 +++ b/src/oct-iostrm.h @@ -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) { }