diff liboctave/oct-refcount.h @ 12174:db1f49eaba6b

whitespace fixes
author John W. Eaton <jwe@octave.org>
date Wed, 26 Jan 2011 23:49:42 -0500
parents a21a3875ca83
children 43cc49c7abd1
line wrap: on
line diff
--- a/liboctave/oct-refcount.h	Wed Jan 26 23:15:59 2011 -0500
+++ b/liboctave/oct-refcount.h	Wed Jan 26 23:49:42 2011 -0500
@@ -33,24 +33,24 @@
   octave_refcount(count_type initial_count) : count(initial_count) {}
 
   // Increment/Decrement. int is postfix.
-  count_type operator++(void) 
-    { 
-      return ++count; 
+  count_type operator++(void)
+    {
+      return ++count;
     }
 
-  count_type operator++(int) 
-    { 
-      return count++; 
+  count_type operator++(int)
+    {
+      return count++;
     }
 
   count_type operator--(void)
-    { 
-      return --count; 
+    {
+      return --count;
     }
 
   count_type operator--(int)
-    { 
-      return count--; 
+    {
+      return count--;
     }
 
   operator count_type (void) const { return count; }