Debugger: Turn on compiled regex on x64 for syntax highlighting (2+x faster)

This commit is contained in:
Souryo 2017-10-05 21:33:22 -04:00
parent 67b9a5c707
commit 6d0e011551

View File

@ -115,10 +115,7 @@ namespace FastColoredTextBoxNS
{
get
{
if (platformType == Platform.X86)
return RegexOptions.Compiled;
else
return RegexOptions.None;
return RegexOptions.Compiled;
}
}