diff src/DLD-FUNCTIONS/kron.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 5ecdb60ddf0f
line wrap: on
line diff
--- a/src/DLD-FUNCTIONS/kron.cc	Thu Jan 20 17:21:27 2011 -0500
+++ b/src/DLD-FUNCTIONS/kron.cc	Thu Jan 20 17:24:59 2011 -0500
@@ -99,7 +99,7 @@
 kron (const MSparse<T>& A, const MSparse<T>& B)
 {
   octave_idx_type idx = 0;
-  MSparse<T> C (A.rows () * B.rows (), A.columns () * B.columns (), 
+  MSparse<T> C (A.rows () * B.rows (), A.columns () * B.columns (),
                 A.nnz () * B.nnz ());
 
   C.cidx (0) = 0;