Skip to content

Commit

Permalink
Separate variance information in mangled names (dotnet#63866)
Browse files Browse the repository at this point in the history
Fixes dotnet/runtimelab#1821.

Eventually we'll need to have a holistic look at how we mangle things.
  • Loading branch information
MichalStrehovsky committed Jan 17, 2022
1 parent 6dcb039 commit d48a44f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public void AppendMangledName(NameMangler nameMangler, Utf8StringBuilder sb)

if (_details.Variance != null)
{
sb.Append("__Variance__");
for (int i = 0; i < _details.Variance.Length; i++)
{
sb.Append('_');
Expand Down

0 comments on commit d48a44f

Please sign in to comment.