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

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Krüger <mikkrg@microsoft.com>2022-06-29 11:50:02 +0300
committerMike Krüger <mikkrg@microsoft.com>2022-06-29 11:50:02 +0300
commit64fddf5f3d757cbc4efb655be6130a152352bf89 (patch)
tree2386b3459f50bbbeaee0e7026c5753a4ce3ac129
parent48456112a64f2fff01ba0f889d7b7a5bab0773d3 (diff)
Removed C# 9 usage.
-rw-r--r--Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs b/Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs
index 5364c2b..1994ade 100644
--- a/Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs
+++ b/Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs
@@ -495,7 +495,7 @@ namespace Mono.Debugging.Client
}
}
- static ConcurrentStack<IntPtr> s_bufferStack = new();
+ static ConcurrentStack<IntPtr> s_bufferStack = new ConcurrentStack<IntPtr>();
static IntPtr GetBuffer()
{