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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2018-01-03 20:54:35 +0300
committerGitHub <noreply@github.com>2018-01-03 20:54:35 +0300
commit975765dbabf177958e8c4278811d5947fd302211 (patch)
treeefcd283771f9925de47d20f647762bc9479a345c /mcs/class/System.Numerics
parent3826a69bc0c194e7598e4a7bbdfd829bbc802a34 (diff)
Bump corefx (#6119)
Diffstat (limited to 'mcs/class/System.Numerics')
-rw-r--r--mcs/class/System.Numerics/Makefile3
-rw-r--r--mcs/class/System.Numerics/System.Numerics.dll.sources8
-rw-r--r--mcs/class/System.Numerics/corefx/SR.cs1
3 files changed, 11 insertions, 1 deletions
diff --git a/mcs/class/System.Numerics/Makefile b/mcs/class/System.Numerics/Makefile
index 6b0a5d52a03..fcbdfcee40c 100644
--- a/mcs/class/System.Numerics/Makefile
+++ b/mcs/class/System.Numerics/Makefile
@@ -13,7 +13,8 @@ LIBRARY_WARN_AS_ERROR = yes
RESX_RESOURCE_STRING = \
../../../external/corefx/src/System.Runtime.Numerics/src/Resources/Strings.resx \
- ../../../external/corefx/src/System.Numerics.Vectors/src/Resources/Strings.resx
+ ../../../external/corefx/src/System.Numerics.Vectors/src/Resources/Strings.resx \
+ ../../../external/corefx/src/System.Buffers/src/Resources/Strings.resx
EXTRA_DISTFILES =
diff --git a/mcs/class/System.Numerics/System.Numerics.dll.sources b/mcs/class/System.Numerics/System.Numerics.dll.sources
index 919debfb842..298e720a2fe 100644
--- a/mcs/class/System.Numerics/System.Numerics.dll.sources
+++ b/mcs/class/System.Numerics/System.Numerics.dll.sources
@@ -6,6 +6,14 @@ corefx/Vector.cs
../../../external/corefx/src/Common/src/System/Globalization/FormatProvider.Number.cs
../../../external/corefx/src/Common/src/System/Numerics/Hashing/HashHelpers.cs
+../../../external/corefx/src/Common/src/System/Text/ValueStringBuilder.cs
+
+# ValueStringBuilder.cs dependency
+../../../external/corefx/src/System.Buffers/src/System/Buffers/ArrayPool.cs
+../../../external/corefx/src/System.Buffers/src/System/Buffers/ArrayPoolEventSource.cs
+../../../external/corefx/src/System.Buffers/src/System/Buffers/DefaultArrayPool.cs
+../../../external/corefx/src/System.Buffers/src/System/Buffers/DefaultArrayPoolBucket.cs
+../../../external/corefx/src/System.Buffers/src/System/Buffers/Utilities.cs
../../../external/corefx/src/System.Runtime.Numerics/src/System/Globalization/FormatProvider.BigInteger.cs
../../../external/corefx/src/System.Runtime.Numerics/src/System/Globalization/FormatProvider.NumberBuffer.cs
diff --git a/mcs/class/System.Numerics/corefx/SR.cs b/mcs/class/System.Numerics/corefx/SR.cs
index e4590b7131d..156d298a3dc 100644
--- a/mcs/class/System.Numerics/corefx/SR.cs
+++ b/mcs/class/System.Numerics/corefx/SR.cs
@@ -22,4 +22,5 @@ partial class SR
public const string Arg_ElementsInSourceIsGreaterThanDestination = "Number of elements in source vector is greater than the destination array";
public const string Arg_NullArgumentNullRef = "The method was called with a null array argument.";
public const string Arg_TypeNotSupported = "Specified type is not supported";
+ public const string ArgumentException_BufferNotFromPool = "The buffer is not associated with this pool and may not be returned to it.";
}