From df6dddd5ce736ec8c1f1bf9273c3e6208a3cdca2 Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Tue, 20 Aug 2019 09:16:19 -0400 Subject: [PATCH] Fix StyleCop warning SA1015 (closing generic brace spacing) Commit migrated from https://github.com/dotnet/coreclr/commit/40d1c18bdabcd702bb4377a7702d2453391c3dd5 --- .../Runtime/Intrinsics/Arm/Arm64/Sha1.PlatformNotSupported.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Arm64/Sha1.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Arm64/Sha1.PlatformNotSupported.cs index f9ccf02..7f6e092 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Arm64/Sha1.PlatformNotSupported.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Arm64/Sha1.PlatformNotSupported.cs @@ -22,19 +22,19 @@ namespace System.Runtime.Intrinsics.Arm.Arm64 /// Performs SHA1 hash update choose form. /// vsha1cq_u32 (uint32x4_t hash_abcd, uint32_t hash_e, uint32x4_t wk) /// - public static Vector128 HashChoose(Vector128 hash_abcd, uint hash_e, Vector128wk) { throw new PlatformNotSupportedException(); } + public static Vector128 HashChoose(Vector128 hash_abcd, uint hash_e, Vector128 wk) { throw new PlatformNotSupportedException(); } /// /// Performs SHA1 hash update majority form. /// vsha1mq_u32 (uint32x4_t hash_abcd, uint32_t hash_e, uint32x4_t wk) /// - public static Vector128 HashMajority(Vector128 hash_abcd, uint hash_e, Vector128wk) { throw new PlatformNotSupportedException(); } + public static Vector128 HashMajority(Vector128 hash_abcd, uint hash_e, Vector128 wk) { throw new PlatformNotSupportedException(); } /// /// Performs SHA1 hash update parity form. /// vsha1pq_u32 (uint32x4_t hash_abcd, uint32_t hash_e, uint32x4_t wk) /// - public static Vector128 HashParity(Vector128 hash_abcd, uint hash_e, Vector128wk) { throw new PlatformNotSupportedException(); } + public static Vector128 HashParity(Vector128 hash_abcd, uint hash_e, Vector128 wk) { throw new PlatformNotSupportedException(); } /// /// Performs SHA1 fixed rotate -- 2.7.4