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:
authorJan Kotas <jkotas@microsoft.com>2017-05-06 03:11:07 +0300
committerJan Kotas <jkotas@microsoft.com>2017-05-06 03:11:07 +0300
commit9adc22171ef4e84b3886be88969f26a2e37714e6 (patch)
tree3d95592533bd0182ee149034d8ee64f7f58e588f /src/Runtime.Base
parent6e984633e7acc8e7d6aac958056b8af119c7078c (diff)
Remove m_ prefix from internal fields of primitive types
Remove RelocatedTypeAttribute that is no longer necessary [tfs-changeset: 1657461]
Diffstat (limited to 'src/Runtime.Base')
-rw-r--r--src/Runtime.Base/src/System/Primitives.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Runtime.Base/src/System/Primitives.cs b/src/Runtime.Base/src/System/Primitives.cs
index 2ef32341c..c7cae2d5c 100644
--- a/src/Runtime.Base/src/System/Primitives.cs
+++ b/src/Runtime.Base/src/System/Primitives.cs
@@ -43,7 +43,7 @@ namespace System
public struct Boolean
{
- // Disable compile warning about unused m_value field
+ // Disable compile warning about unused _value field
#pragma warning disable 0169
private bool _value;
#pragma warning restore 0169