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/Metadata/NativeFormat/NativeFormatReaderGen.cs')
-rw-r--r--src/coreclr/tools/Common/Internal/Metadata/NativeFormat/NativeFormatReaderGen.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coreclr/tools/Common/Internal/Metadata/NativeFormat/NativeFormatReaderGen.cs b/src/coreclr/tools/Common/Internal/Metadata/NativeFormat/NativeFormatReaderGen.cs
index faa24815ba5..ad38fab1bf2 100644
--- a/src/coreclr/tools/Common/Internal/Metadata/NativeFormat/NativeFormatReaderGen.cs
+++ b/src/coreclr/tools/Common/Internal/Metadata/NativeFormat/NativeFormatReaderGen.cs
@@ -10700,7 +10700,7 @@ namespace Internal.Metadata.NativeFormat
public ConstantStringValue GetConstantStringValue(ConstantStringValueHandle handle)
{
if (IsNull(handle))
- return new ConstantStringValue();
+ return default(ConstantStringValue);
ConstantStringValue record;
record._reader = this;
record._handle = handle;