changeset 731:d63741d00ee3

Fix broken indentation from last commit.
author Christian Kamm <kamm incasoftware de>
date Sun, 26 Oct 2008 21:18:24 +0100
parents 09b88beffd2d
children 6aeaef263289
files runtime/internal/genobj.d
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/internal/genobj.d	Sun Oct 26 21:16:21 2008 +0100
+++ b/runtime/internal/genobj.d	Sun Oct 26 21:18:24 2008 +0100
@@ -800,11 +800,11 @@
             {   if (!p2)
                     c = 1;
                 else if (xopCmp)
-		    // the x86 D calling conv requires the this arg to be last here
-		    version(X86)
+                    // the x86 D calling conv requires the this arg to be last here
+                    version(X86)
                         c = (*xopCmp)(p2, p1);
-		    else
-		        c = (*xopCmp)(p1, p2);
+                    else
+                        c = (*xopCmp)(p1, p2);
                 else
                     // BUG: relies on the GC not moving objects
                     c = memcmp(p1, p2, m_init.length);