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:
authorMandar Sahasrabuddhe <WinCPP@users.noreply.github.com>2018-03-01 09:30:07 +0300
committerStephen Toub <stoub@microsoft.com>2018-03-01 17:01:35 +0300
commitd8f83eba53af33e823eb468eea5b2955d059fef2 (patch)
tree78c95af3244b2af5551e005a5c7474f1e5190879
parent3a7b082ab3a8a6d24b35914c785894b9dc94821b (diff)
Edits to fix conflicts in generated Vector.cs file (dotnet/coreclr#16666)
Fixed minor space changes and one syntax error that causes conflict between checked in Vector.cs file and the freshly auto-generated Vector.cs file. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
-rw-r--r--src/System.Private.CoreLib/shared/System/Numerics/Vector.tt8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Numerics/Vector.tt b/src/System.Private.CoreLib/shared/System/Numerics/Vector.tt
index 82aa73d22..275f47350 100644
--- a/src/System.Private.CoreLib/shared/System/Numerics/Vector.tt
+++ b/src/System.Private.CoreLib/shared/System/Numerics/Vector.tt
@@ -68,12 +68,12 @@ namespace System.Numerics
/// Returns a vector containing all zeroes.
/// </summary>
public static Vector<T> Zero
- {
+ {
[Intrinsic]
get
{
return s_zero;
- }
+ }
}
private static readonly Vector<T> s_zero = new Vector<T>();
@@ -84,7 +84,7 @@ namespace System.Numerics
{
[Intrinsic]
get
- {
+ {
return s_one;
}
}
@@ -999,7 +999,7 @@ namespace System.Numerics
[MethodImplAttribute(MethodImplOptions.AggressiveInlining)]
public static Vector<T> operator ~(Vector<T> value)
{
- return allOnes ^ value;
+ return s_allOnes ^ value;
}
#endregion Bitwise Operators