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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/tools/Common/Internal/Text/Utf8String.cs')
-rw-r--r--src/coreclr/tools/Common/Internal/Text/Utf8String.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/coreclr/tools/Common/Internal/Text/Utf8String.cs b/src/coreclr/tools/Common/Internal/Text/Utf8String.cs
index 9b44102c582..360aa3d27e9 100644
--- a/src/coreclr/tools/Common/Internal/Text/Utf8String.cs
+++ b/src/coreclr/tools/Common/Internal/Text/Utf8String.cs
@@ -3,7 +3,6 @@
using System;
using System.Numerics;
-using System.Runtime.CompilerServices;
using System.Text;
namespace Internal.Text
@@ -43,7 +42,7 @@ namespace Internal.Text
return (obj is Utf8String) && Equals((Utf8String)obj);
}
- public unsafe override int GetHashCode()
+ public override unsafe int GetHashCode()
{
int length = _value.Length;
uint hash = (uint)length;