Skip to content

Commit

Permalink
Fix MDPuzzle build
Browse files Browse the repository at this point in the history
  • Loading branch information
BruceForstall committed Oct 11, 2021
1 parent 5d520ea commit b3d5a78
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ private bool Bench()
[Benchmark]
public static void Test()
{
Puzzle P = new Puzzle();
MDPuzzle P = new MDPuzzle();
foreach (var iteration in Benchmark.Iterations)
{
using (iteration.StartMeasurement())
Expand All @@ -369,7 +369,7 @@ public static void Test()

private static bool TestBase()
{
Puzzle P = new Puzzle();
MDPuzzle P = new MDPuzzle();
bool result = P.Bench();
return result;
}
Expand Down

0 comments on commit b3d5a78

Please sign in to comment.