diff liboctave/oct-spparms.h @ 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 fd0a3ac60b0e
children 7dd7cccf0757
line wrap: on
line diff
--- a/liboctave/oct-spparms.h	Thu Jan 20 17:21:27 2011 -0500
+++ b/liboctave/oct-spparms.h	Thu Jan 20 17:24:59 2011 -0500
@@ -43,7 +43,7 @@
 
   octave_sparse_params (void)
     : params (OCTAVE_SPARSE_CONTROLS_SIZE),
-      keys (OCTAVE_SPARSE_CONTROLS_SIZE) 
+      keys (OCTAVE_SPARSE_CONTROLS_SIZE)
   {
     init_keys ();
     do_defaults ();
@@ -61,7 +61,7 @@
         params = a.params;
         keys = a.keys;
       }
-    
+
     return *this;
   }
 
@@ -72,7 +72,7 @@
   static void defaults (void);
 
   static void tight (void);
-  
+
   static string_vector get_keys (void);
 
   static ColumnVector get_vals (void);
@@ -98,7 +98,7 @@
   void do_defaults (void);
 
   void do_tight (void);
-  
+
   string_vector do_get_keys (void) const { return keys; }
 
   ColumnVector do_get_vals (void) const { return params; }
@@ -112,7 +112,7 @@
   double do_get_bandden (void);
 
   void do_print_info (std::ostream& os, const std::string& prefix) const;
-  
+
   void init_keys (void);
 };