Skip to content

Commit

Permalink
Fix event source WriteEventOverload to make it being used (Azure#28119)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmarbach authored Apr 9, 2022
1 parent 4d52f47 commit 65a47bf
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -406,11 +406,11 @@ public virtual void GetCheckpointError(string fullyQualifiedNamespace,
///
[NonEvent]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private unsafe void WriteEvent<TValue1, TValue2>(int eventId,
string arg1,
string arg2,
string arg3,
TValue2 arg4)
private unsafe void WriteEvent<TValue1>(int eventId,
string arg1,
string arg2,
string arg3,
TValue1 arg4)
where TValue1 : struct
{
fixed (char* arg1Ptr = arg1)
Expand Down

0 comments on commit 65a47bf

Please sign in to comment.