Skip to content

Commit

Permalink
fix: add missing in
Browse files Browse the repository at this point in the history
  • Loading branch information
homuler committed Jan 19, 2025
1 parent 0e04cb8 commit bb7b366
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ internal static void Copy(NativeDetectionResult source, ref DetectionResult dest
foreach (var nativeDetection in source.AsReadOnlySpan())
{
var detection = detections[i];
Detection.Copy(nativeDetection, ref detection);
Detection.Copy(in nativeDetection, ref detection);
detections[i++] = detection;
}

Expand Down

0 comments on commit bb7b366

Please sign in to comment.