Beautifying integer_cln_imp.h
authorTim King <taking@cs.nyu.edu>
Sat, 10 Nov 2012 23:56:46 +0000 (23:56 +0000)
committerTim King <taking@cs.nyu.edu>
Sat, 10 Nov 2012 23:56:46 +0000 (23:56 +0000)
src/util/integer_cln_imp.h

index c48e93d57bfcb1a27a54a949f78925bc80ed0880..78b775bee7006ea982f251fb00cef38b64528765 100644 (file)
@@ -222,10 +222,10 @@ public:
   }
 
   Integer bitwiseNot() const {
-    return Integer(cln::lognot(d_value));  
+    return Integer(cln::lognot(d_value));
   }
-  
-  
+
+
   /**
    * Return this*(2^pow).
    */
@@ -239,15 +239,15 @@ public:
     cln::cl_byte range(amount, size);
     cln::cl_I allones = (cln::cl_I(1) << (size + amount))- 1; // 2^size - 1
     Integer temp(allones);
-    
-    return Integer(cln::deposit_field(allones, d_value, range)); 
+
+    return Integer(cln::deposit_field(allones, d_value, range));
   }
-  
+
   uint32_t toUnsignedInt() const {
-    return cln::cl_I_to_uint(d_value); 
+    return cln::cl_I_to_uint(d_value);
   }
-  
-  
+
+
   /** See CLN Documentation. */
   Integer extractBitRange(uint32_t bitCount, uint32_t low) const {
     cln::cl_byte range(bitCount, low);
@@ -304,9 +304,9 @@ public:
   }
 
   Integer divByPow2(uint32_t exp) const {
-    return d_value >> exp; 
+    return d_value >> exp;
   }
-  
+
   /**
    * Raise this Integer to the power <code>exp</code>.
    *