summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Int32.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Int32.cs')
-rw-r--r--src/mscorlib/src/System/Int32.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mscorlib/src/System/Int32.cs b/src/mscorlib/src/System/Int32.cs
index 90b70a9554..afee0e42d7 100644
--- a/src/mscorlib/src/System/Int32.cs
+++ b/src/mscorlib/src/System/Int32.cs
@@ -25,7 +25,7 @@ namespace System
public struct Int32 : IComparable, IFormattable, IConvertible
, IComparable<Int32>, IEquatable<Int32>
{
- internal int m_value;
+ private int m_value; // Do not rename (binary serialization)
public const int MaxValue = 0x7fffffff;
public const int MinValue = unchecked((int)0x80000000);