Browse Source

Fix formatting

pull/2276/head
Siegfried Pammer 5 years ago
parent
commit
69258806f6
  1. 3
      ICSharpCode.Decompiler/CSharp/ExpressionBuilder.cs

3
ICSharpCode.Decompiler/CSharp/ExpressionBuilder.cs

@ -790,7 +790,8 @@ namespace ICSharpCode.Decompiler.CSharp @@ -790,7 +790,8 @@ namespace ICSharpCode.Decompiler.CSharp
{
// Reference comparison using Unsafe intrinsics
Debug.Assert(!inst.IsLifted);
(string methodName, bool negate) = inst.Kind switch {
(string methodName, bool negate) = inst.Kind switch
{
ComparisonKind.Equality => ("AreSame", false),
ComparisonKind.Inequality => ("AreSame", true),
ComparisonKind.LessThan => ("IsAddressLessThan", false),

Loading…
Cancel
Save