Skip to content

Commit

Permalink
Avoid using preview LangVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
MihaZupan committed Sep 1, 2024
1 parent bd31ef2 commit a04ccbf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Runner/RegexDiffJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ static string ParseCSharpLiteral(ReadOnlySpan<char> literal, out int indexOfEndi
'n' => '\n',
'f' => '\f',
'r' => '\r',
'e' => '\e',
'e' => (char)27,
'\\' => '\\',
'0' => '\0',
_ => throw new NotImplementedException(literal[i + 1].ToString())
Expand Down
1 change: 0 additions & 1 deletion Runner/Runner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<NoWarn>${NoWarn};IDE0305</NoWarn>
<LangVersion>preview</LangVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit a04ccbf

Please sign in to comment.