diff liboctave/MSparse.cc @ 11586:12df7854fa7c

strip trailing whitespace from source files
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:24:59 -0500
parents 57632dea2446
children 11c8b60f1b68
line wrap: on
line diff
--- a/liboctave/MSparse.cc	Thu Jan 20 17:21:27 2011 -0500
+++ b/liboctave/MSparse.cc	Thu Jan 20 17:24:59 2011 -0500
@@ -54,18 +54,18 @@
     else
       {
         r = MSparse<T> (a_nr, a_nc, (a.nnz () + b.nnz ()));
-       
+
         octave_idx_type jx = 0;
         for (octave_idx_type i = 0 ; i < a_nc ; i++)
           {
             octave_idx_type  ja = a.cidx(i);
             octave_idx_type  ja_max = a.cidx(i+1);
             bool ja_lt_max= ja < ja_max;
-           
+
             octave_idx_type  jb = b.cidx(i);
             octave_idx_type  jb_max = b.cidx(i+1);
             bool jb_lt_max = jb < jb_max;
-           
+
             while (ja_lt_max || jb_lt_max )
               {
                 octave_quit ();
@@ -103,7 +103,7 @@
               }
             r.cidx(i+1) = jx;
           }
-       
+
         a = r.maybe_compress ();
       }
 
@@ -127,18 +127,18 @@
     else
       {
         r = MSparse<T> (a_nr, a_nc, (a.nnz () + b.nnz ()));
-       
+
         octave_idx_type jx = 0;
         for (octave_idx_type i = 0 ; i < a_nc ; i++)
           {
             octave_idx_type  ja = a.cidx(i);
             octave_idx_type  ja_max = a.cidx(i+1);
             bool ja_lt_max= ja < ja_max;
-           
+
             octave_idx_type  jb = b.cidx(i);
             octave_idx_type  jb_max = b.cidx(i+1);
             bool jb_lt_max = jb < jb_max;
-           
+
             while (ja_lt_max || jb_lt_max )
               {
                 octave_quit ();
@@ -176,7 +176,7 @@
               }
             r.cidx(i+1) = jx;
           }
-       
+
         a = r.maybe_compress ();
       }