Skip to content

Commit 9594b9c

Browse files
authored
Remove dead const from RegexNode (#68297)
1 parent 1b329a0 commit 9594b9c

File tree

1 file changed

+0
-2
lines changed
  • src/libraries/System.Text.RegularExpressions/src/System/Text/RegularExpressions

1 file changed

+0
-2
lines changed

src/libraries/System.Text.RegularExpressions/src/System/Text/RegularExpressions/RegexNode.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ namespace System.Text.RegularExpressions
1212
/// <summary>Represents a regex subexpression.</summary>
1313
internal sealed class RegexNode
1414
{
15-
/// <summary>empty bit from the node's options to store data on whether a node contains captures</summary>
16-
internal const RegexOptions HasCapturesFlag = (RegexOptions)(1 << 31);
1715
/// <summary>Arbitrary number of repetitions of the same character when we'd prefer to represent that as a repeater of that character rather than a string.</summary>
1816
internal const int MultiVsRepeaterLimit = 64;
1917

0 commit comments

Comments
 (0)