From 50cd75fe3548ddc92488f888b4f04a79461f3047 Mon Sep 17 00:00:00 2001 From: ReinUsesLisp Date: Sat, 28 Jul 2018 02:35:13 -0300 Subject: [PATCH] Fix build issue --- src/OpenTK/Graphics/Vulkan/NativeList.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/OpenTK/Graphics/Vulkan/NativeList.cs b/src/OpenTK/Graphics/Vulkan/NativeList.cs index 1a91d50e..aaa8a6c9 100644 --- a/src/OpenTK/Graphics/Vulkan/NativeList.cs +++ b/src/OpenTK/Graphics/Vulkan/NativeList.cs @@ -6,8 +6,11 @@ using System.Runtime.InteropServices; #if !VALIDATE using System.Diagnostics; #endif + namespace OpenTK.Graphics.Vulkan { + using Debug = System.Diagnostics.Debug; + public unsafe class NativeList : IEnumerable, IDisposable where T : struct { private byte* _dataPtr;