Skip to content

Commit 480d0bc

Browse files
committed
Remove leftover [MethodImpl] attributes
1 parent 46f7d57 commit 480d0bc

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/Brainf_ckSharp/Brainf_ckInterpreter.cs

-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ public static partial class Brainf_ckInterpreter
2020
/// </summary>
2121
/// <param name="configuration">The configuration to run</param>
2222
/// <returns>An <see cref="Option{T}"/> of <see cref="InterpreterResult"/> instance with the results of the execution</returns>
23-
[MethodImpl(MethodImplOptions.NoInlining)]
2423
public static Option<InterpreterSession> TryRun(in DebugConfiguration configuration)
2524
{
2625
if (configuration.InitialState is TuringMachineState initialState)
@@ -54,7 +53,6 @@ public static Option<InterpreterSession> TryRun(in DebugConfiguration configurat
5453
/// </summary>
5554
/// <param name="configuration">The configuration to run</param>
5655
/// <returns>An <see cref="Option{T}"/> of <see cref="InterpreterResult"/> instance with the results of the execution</returns>
57-
[MethodImpl(MethodImplOptions.NoInlining)]
5856
public static Option<InterpreterResult> TryRun(in ReleaseConfiguration configuration)
5957
{
6058
using MemoryOwner<Brainf_ckOperation>? operations = Brainf_ckParser.TryParse<Brainf_ckOperation>(

0 commit comments

Comments
 (0)