Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2019-08-13 23:18:33 +0300
committerMarek Safar <marek.safar@gmail.com>2019-08-14 22:19:04 +0300
commite46b3efbd04ff736f8244bcfcedc1ea3b4bbaefb (patch)
tree5f24aef7c9733b4538bc62726a51b63e4b2baa45
parentce92c4376f31e9caf964938a3899d179bdc97e51 (diff)
Undo readonly on _isLastFrameFromForeignExceptionStackTrace
This makes the field symmetric with other fields and fixes build break for CoreRT Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
-rw-r--r--netcore/System.Private.CoreLib/shared/System/Diagnostics/StackFrame.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/netcore/System.Private.CoreLib/shared/System/Diagnostics/StackFrame.cs b/netcore/System.Private.CoreLib/shared/System/Diagnostics/StackFrame.cs
index 47c82309756..1683206bbce 100644
--- a/netcore/System.Private.CoreLib/shared/System/Diagnostics/StackFrame.cs
+++ b/netcore/System.Private.CoreLib/shared/System/Diagnostics/StackFrame.cs
@@ -47,7 +47,7 @@ namespace System.Diagnostics
/// <summary>
/// This flag is set to true when the frame represents a rethrow marker.
/// </summary>
- private readonly bool _isLastFrameFromForeignExceptionStackTrace;
+ private bool _isLastFrameFromForeignExceptionStackTrace;
private void InitMembers()
{