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:
authorKirill Osenkov <github@osenkov.com>2019-01-26 03:37:17 +0300
committerKirill Osenkov <github@osenkov.com>2019-01-26 03:37:17 +0300
commitc907d0719ad96bea3c6308f6f8e5307e6dae1667 (patch)
treec76f7d3d00e5394a4b2e30def8a031440798cdd0 /Mono.Debugging.Win32
parent30829f533f7f17be7a39d014b59c25552d4d755d (diff)
Fix warning.
Diffstat (limited to 'Mono.Debugging.Win32')
-rw-r--r--Mono.Debugging.Win32/CorDebuggerSession.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mono.Debugging.Win32/CorDebuggerSession.cs b/Mono.Debugging.Win32/CorDebuggerSession.cs
index d55d181..0d8643a 100644
--- a/Mono.Debugging.Win32/CorDebuggerSession.cs
+++ b/Mono.Debugging.Win32/CorDebuggerSession.cs
@@ -1751,7 +1751,7 @@ namespace Mono.Debugging.Win32
ValueReference val = ctx.Evaluator.Evaluate (ctx, exp);
return val.CreateObjectValue (false).Value;
}
- catch (EvaluatorException e) {
+ catch (EvaluatorException) {
throw;
}
catch (Exception ex) {