Skip to content

Commit

Permalink
Fix processor reversal (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
ds5678 authored Jan 1, 2024
1 parent 6a5e46e commit 798e42e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Cpp2IL.Core/Extensions/MiscExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ public static List<T> Clone<T>(this List<T> original)
{
var arr = new T[original.Count];
original.CopyTo(arr, 0);
Array.Reverse(arr);
return new List<T>(arr);
}

Expand Down

0 comments on commit 798e42e

Please sign in to comment.