Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClinton Ingram <clinton.ingram@outlook.com>2018-08-20 14:06:30 +0300
committerJan Kotas <jkotas@microsoft.com>2018-08-21 20:59:12 +0300
commit1531f0652784daf15e13ec156db4626e49c28de6 (patch)
treee97ee0598f0a265db76879a9bb49826a718d1924 /src/System.Private.CoreLib/shared/System/Numerics/Register.tt
parente65798db4e4786c67f33dd7404ef00813aec4cbf (diff)
Update t4 templates to generate simplified type names
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/Numerics/Register.tt')
-rw-r--r--src/System.Private.CoreLib/shared/System/Numerics/Register.tt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Numerics/Register.tt b/src/System.Private.CoreLib/shared/System/Numerics/Register.tt
index a9de3b974..676b89f54 100644
--- a/src/System.Private.CoreLib/shared/System/Numerics/Register.tt
+++ b/src/System.Private.CoreLib/shared/System/Numerics/Register.tt
@@ -34,7 +34,7 @@ namespace System.Numerics
{
#>
[FieldOffset(<#=Marshal.SizeOf(type) * g#>)]
- internal <#=type.Name#> <#= type.Name.ToLowerInvariant() + "_" + g #>;
+ internal <#= typeAliases[type] #> <#= type.Name.ToLowerInvariant() + "_" + g #>;
<#
}
#>