Indent
authorMiguel de Icaza <miguel@gnome.org>
Thu, 21 Aug 2008 06:24:53 +0000 (06:24 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Thu, 21 Aug 2008 06:24:53 +0000 (06:24 -0000)
svn path=/trunk/mcs/; revision=111232

mcs/mcs/convert.cs

index 82aa6241b866b3eb8fcf9404bd0aef3089f1ce75..4ed1f25adb5cf2c6aca8cbf5e6f4f0172021c589 100644 (file)
@@ -1967,11 +1967,11 @@ namespace Mono.CSharp {
                                //
                                // LAMESPEC: IntPtr and UIntPtr conversion to any Enum is allowed
                                //
-                if (expr_type == TypeManager.intptr_type || expr_type == TypeManager.uintptr_type) {
+                               if (expr_type == TypeManager.intptr_type || expr_type == TypeManager.uintptr_type) {
                                        ne = ExplicitUserConversion (ec, expr, TypeManager.GetEnumUnderlyingType (target_type), loc);
                                        if (ne != null)
                                                return ExplicitConversionCore (ec, ne, target_type, loc);
-                }
+                               }
                                
                                return null;
                        }