From b3b98c3284c452d0aa331fb6b8d83d55e6cc4d94 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Sun, 26 Oct 2008 21:18:24 +0100 Subject: [PATCH] Fix broken indentation from last commit. --- runtime/internal/genobj.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/internal/genobj.d b/runtime/internal/genobj.d index 9c4246e7..5a64b886 100644 --- a/runtime/internal/genobj.d +++ b/runtime/internal/genobj.d @@ -800,11 +800,11 @@ class TypeInfo_Struct : TypeInfo { 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);