diff liboctave/oct-inttypes.h @ 10312:cbc402e64d83

untabify liboctave header files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:14:48 -0500
parents 4c0cdbe0acca
children 65d5776379c3
line wrap: on
line diff
--- a/liboctave/oct-inttypes.h	Thu Feb 11 11:57:36 2010 -0500
+++ b/liboctave/oct-inttypes.h	Thu Feb 11 12:14:48 2010 -0500
@@ -709,7 +709,7 @@
           // FIXME -- this is a workaround due to MSVC's absence of
           // std::abs (int64_t).  The call to octave_int_abs can't
           // overflow, but std::abs (x) can!
-	  T w = octave_int_abs (x % y);
+          T w = octave_int_abs (x % y);
 
           if (w >= y - w) 
             z += 1 - (signbit (x) << 1);
@@ -955,7 +955,7 @@
 template <class T>
 octave_int<T>
 bitshift (const octave_int<T>& a, int n,
-	  const octave_int<T>& mask = std::numeric_limits<T>::max ())
+          const octave_int<T>& mask = std::numeric_limits<T>::max ())
 {
   if (n > 0)
     return (a << n) & mask;