]> granicus.if.org Git - python/commitdiff
Fix formatting after removing tabs.
authorStefan Krah <skrah@bytereef.org>
Fri, 23 Mar 2012 15:34:41 +0000 (16:34 +0100)
committerStefan Krah <skrah@bytereef.org>
Fri, 23 Mar 2012 15:34:41 +0000 (16:34 +0100)
Modules/_decimal/libmpdec/fourstep.c
Modules/_decimal/libmpdec/sixstep.c

index 91a1b279c2b604e0d412b4af8478579a43264eeb..aa32c0d5cf2e235acc3c26fe105e9d57cf915014 100644 (file)
@@ -184,7 +184,8 @@ four_step_fnt(mpd_uint_t *a, mpd_size_t n, int modnum)
         }
     }
 
-#if 0    /* An unordered transform is sufficient for convolution. */
+#if 0
+    /* An unordered transform is sufficient for convolution. */
     /* Transpose the matrix. */
     transpose_3xpow2(a, R, C);
 #endif
@@ -213,7 +214,8 @@ inv_four_step_fnt(mpd_uint_t *a, mpd_size_t n, int modnum)
     assert(n <= 3*MPD_MAXTRANSFORM_2N);
 
 
-#if 0    /* An unordered transform is sufficient for convolution. */
+#if 0
+    /* An unordered transform is sufficient for convolution. */
     /* Transpose the matrix, producing an R*C matrix. */
     transpose_3xpow2(a, C, R);
 #endif
index f757814dccd48492173567684f052681d85f21a6..7d0542d641dcb8ac9a81ed6fb53c4ce4b30a9fb8 100644 (file)
@@ -115,7 +115,8 @@ six_step_fnt(mpd_uint_t *a, mpd_size_t n, int modnum)
     }
     mpd_free(tparams);
 
-#if 0    /* An unordered transform is sufficient for convolution. */
+#if 0
+    /* An unordered transform is sufficient for convolution. */
     /* Transpose the matrix. */
     if (!transpose_pow2(a, R, C)) {
         return 0;
@@ -151,7 +152,8 @@ inv_six_step_fnt(mpd_uint_t *a, mpd_size_t n, int modnum)
     R = ((mpd_size_t)1) << (log2n - (log2n / 2)); /* number of rows */
 
 
-#if 0    /* An unordered transform is sufficient for convolution. */
+#if 0
+    /* An unordered transform is sufficient for convolution. */
     /* Transpose the matrix, producing an R*C matrix. */
     if (!transpose_pow2(a, C, R)) {
         return 0;