summaryrefslogtreecommitdiff
path: root/src/vm/runtimehandles.cpp
diff options
context:
space:
mode:
authorAtsushi Kanamori <AtsushiKan@users.noreply.github.com>2018-05-01 20:30:22 -0700
committerJan Kotas <jkotas@microsoft.com>2018-05-01 20:30:22 -0700
commitfcb04373e2015ae12b55f33fdd0dd4580110db98 (patch)
tree3ba8aaeec6a06444f3999de902944de58e552a8b /src/vm/runtimehandles.cpp
parentfc36988f5417dc600bce75a530e4c9297ec589b2 (diff)
downloadcoreclr-fcb04373e2015ae12b55f33fdd0dd4580110db98.tar.gz
coreclr-fcb04373e2015ae12b55f33fdd0dd4580110db98.tar.bz2
coreclr-fcb04373e2015ae12b55f33fdd0dd4580110db98.zip
Rename internal Utf8String to MdUtf8String (#17856)
We want to start prototyping Utf8String in CoreFxLab and for that, we'll need a bare-bones System.Utf8String class exposed from System.Private.CoreLib. Unfortunately, CoreLib already has an internal struct named System.Utf8String. Since it's only an internal type, we'll exercise eminent domain on its name now and get these noise changes out of the way.
Diffstat (limited to 'src/vm/runtimehandles.cpp')
-rw-r--r--src/vm/runtimehandles.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vm/runtimehandles.cpp b/src/vm/runtimehandles.cpp
index 2aba21fb74..1d0fb955c2 100644
--- a/src/vm/runtimehandles.cpp
+++ b/src/vm/runtimehandles.cpp
@@ -32,7 +32,7 @@
#include "invokeutil.h"
-FCIMPL3(FC_BOOL_RET, Utf8String::EqualsCaseSensitive, LPCUTF8 szLhs, LPCUTF8 szRhs, INT32 stringNumBytes)
+FCIMPL3(FC_BOOL_RET, MdUtf8String::EqualsCaseSensitive, LPCUTF8 szLhs, LPCUTF8 szRhs, INT32 stringNumBytes)
{
CONTRACTL {
FCALL_CHECK;
@@ -50,7 +50,7 @@ FCIMPL3(FC_BOOL_RET, Utf8String::EqualsCaseSensitive, LPCUTF8 szLhs, LPCUTF8 szR
}
FCIMPLEND
-BOOL QCALLTYPE Utf8String::EqualsCaseInsensitive(LPCUTF8 szLhs, LPCUTF8 szRhs, INT32 stringNumBytes)
+BOOL QCALLTYPE MdUtf8String::EqualsCaseInsensitive(LPCUTF8 szLhs, LPCUTF8 szRhs, INT32 stringNumBytes)
{
QCALL_CONTRACT;
@@ -77,7 +77,7 @@ BOOL QCALLTYPE Utf8String::EqualsCaseInsensitive(LPCUTF8 szLhs, LPCUTF8 szRhs, I
return fStringsEqual;
}
-ULONG QCALLTYPE Utf8String::HashCaseInsensitive(LPCUTF8 sz, INT32 stringNumBytes)
+ULONG QCALLTYPE MdUtf8String::HashCaseInsensitive(LPCUTF8 sz, INT32 stringNumBytes)
{
QCALL_CONTRACT;