Skip to content

Commit

Permalink
Address PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
manodasanW committed Jan 9, 2024
1 parent f2a0c6b commit 2453f07
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/WinRT.Runtime/Projections/Nullable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1941,8 +1941,8 @@ public sealed class StructTypeDetails<T, TAbi> : IWinRTExposedTypeDetails where

public ComWrappers.ComInterfaceEntry[] GetExposedInterfaces()
{
return
[
return new ComWrappers.ComInterfaceEntry[]
{
new ComWrappers.ComInterfaceEntry
{
IID = ABI.Windows.Foundation.ManagedIPropertyValueImpl.IID,
Expand All @@ -1953,7 +1953,7 @@ public ComWrappers.ComInterfaceEntry[] GetExposedInterfaces()
IID = PIID,
Vtable = ABI.Windows.Foundation.BoxedValueIReferenceImpl<T, TAbi>.AbiToProjectionVftablePtr
}
];
};
}
}

Expand All @@ -1968,8 +1968,8 @@ public ComWrappers.ComInterfaceEntry[] GetExposedInterfaces()

public static ComWrappers.ComInterfaceEntry[] GetExposedInterfaces(ComWrappers.ComInterfaceEntry delegateInterface)
{
return
[
return new ComWrappers.ComInterfaceEntry[]
{
delegateInterface,
new ComWrappers.ComInterfaceEntry
{
Expand All @@ -1981,7 +1981,7 @@ public static ComWrappers.ComInterfaceEntry[] GetExposedInterfaces(ComWrappers.C
IID = PIID,
Vtable = ABI.System.Nullable_Delegate<T>.AbiToProjectionVftablePtr
}
];
};
}

public abstract ComWrappers.ComInterfaceEntry GetDelegateInterface();
Expand Down

0 comments on commit 2453f07

Please sign in to comment.