Skip to content

Commit

Permalink
Remove leftover [MethodImpl] attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio0694 committed Sep 15, 2024
1 parent 46f7d57 commit 480d0bc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/Brainf_ckSharp/Brainf_ckInterpreter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public static partial class Brainf_ckInterpreter
/// </summary>
/// <param name="configuration">The configuration to run</param>
/// <returns>An <see cref="Option{T}"/> of <see cref="InterpreterResult"/> instance with the results of the execution</returns>
[MethodImpl(MethodImplOptions.NoInlining)]
public static Option<InterpreterSession> TryRun(in DebugConfiguration configuration)
{
if (configuration.InitialState is TuringMachineState initialState)
Expand Down Expand Up @@ -54,7 +53,6 @@ public static Option<InterpreterSession> TryRun(in DebugConfiguration configurat
/// </summary>
/// <param name="configuration">The configuration to run</param>
/// <returns>An <see cref="Option{T}"/> of <see cref="InterpreterResult"/> instance with the results of the execution</returns>
[MethodImpl(MethodImplOptions.NoInlining)]
public static Option<InterpreterResult> TryRun(in ReleaseConfiguration configuration)
{
using MemoryOwner<Brainf_ckOperation>? operations = Brainf_ckParser.TryParse<Brainf_ckOperation>(
Expand Down

0 comments on commit 480d0bc

Please sign in to comment.