Skip to content

Commit 7138986

Browse files
authored
Fixed Debug builds in IDE (#362)
* Debug builds of OrcJitTests are missing a using to allow debug only tests to work.
1 parent 5e56669 commit 7138986

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Ubiquity.NET.Llvm.JIT.Tests/OrcJitTests.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
using System.Diagnostics;
55
using System.Diagnostics.CodeAnalysis;
66

7+
#if DEBUG
8+
using System.Linq;
9+
#endif
10+
711
using Microsoft.VisualStudio.TestTools.UnitTesting;
812

913
using Ubiquity.NET.Extensions;

0 commit comments

Comments
 (0)