summaryrefslogtreecommitdiff
path: root/src/classlibnative
diff options
context:
space:
mode:
authorDan Moseley <danmose@microsoft.com>2017-03-24 20:02:35 -0700
committerGitHub <noreply@github.com>2017-03-24 20:02:35 -0700
commit67ab2b3b406731712c80d37b6b23f0445bf96632 (patch)
tree2f7bcc249a6c45d99d5bd75f48e10bfc9769ed4e /src/classlibnative
parent9851f95cd3d4cefe824b8ad90c61f05ff2fddbf1 (diff)
downloadcoreclr-67ab2b3b406731712c80d37b6b23f0445bf96632.tar.gz
coreclr-67ab2b3b406731712c80d37b6b23f0445bf96632.tar.bz2
coreclr-67ab2b3b406731712c80d37b6b23f0445bf96632.zip
Rename resource strings to match resx (#10475)
Diffstat (limited to 'src/classlibnative')
-rw-r--r--src/classlibnative/bcltype/arraynative.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/classlibnative/bcltype/arraynative.cpp b/src/classlibnative/bcltype/arraynative.cpp
index d12867ef1e..53a3654e41 100644
--- a/src/classlibnative/bcltype/arraynative.cpp
+++ b/src/classlibnative/bcltype/arraynative.cpp
@@ -1143,7 +1143,7 @@ void ArrayNative::CheckElementType(TypeHandle elementType)
// Check for byref-like types.
if (pMT->IsByRefLike())
- COMPlusThrow(kNotSupportedException, W("NotSupported_ByRefLike[]"));
+ COMPlusThrow(kNotSupportedException, W("NotSupported_ByRefLikeArray"));
// Check for open generic types.
if (pMT->IsGenericTypeDefinition() || pMT->ContainsGenericVariables())
@@ -1151,7 +1151,7 @@ void ArrayNative::CheckElementType(TypeHandle elementType)
// Check for Void.
if (elementType.GetSignatureCorElementType() == ELEMENT_TYPE_VOID)
- COMPlusThrow(kNotSupportedException, W("NotSupported_Void[]"));
+ COMPlusThrow(kNotSupportedException, W("NotSupported_VoidArray"));
// That's all the dangerous simple types we know, it must be OK.
return;