From: Jeffrey Stedfast Date: Mon, 18 Feb 2013 21:20:24 +0000 (-0500) Subject: [Mono.Debugger.Soft] Mark StepFilter with [Flags] X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=9731ba29ff59fb43c15a90ffead02c3107e96a7d;p=mono.git [Mono.Debugger.Soft] Mark StepFilter with [Flags] --- diff --git a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/StepEventRequest.cs b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/StepEventRequest.cs index 8559acb66cc..cb3c79231ba 100644 --- a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/StepEventRequest.cs +++ b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/StepEventRequest.cs @@ -17,6 +17,7 @@ namespace Mono.Debugger.Soft /* * Filter which kinds of methods to skip during single stepping */ + [Flags] public enum StepFilter { None = 0, StaticCtor = 1, @@ -83,4 +84,4 @@ namespace Mono.Debugger.Soft } } } -} \ No newline at end of file +}