From 1770ad72804e17f3a6c45f591d0337412bd70b1e Mon Sep 17 00:00:00 2001 From: Lectem Date: Mon, 19 Sep 2016 10:28:03 +0200 Subject: [PATCH] Fix build on VC2015 On VC2015 the project wouldn't build because of the missing typedefs. This was tested on both 2013 and 2015. --- src/nvcore/DefsVcWin32.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/nvcore/DefsVcWin32.h b/src/nvcore/DefsVcWin32.h index c2f6c18..632817f 100644 --- a/src/nvcore/DefsVcWin32.h +++ b/src/nvcore/DefsVcWin32.h @@ -1,4 +1,4 @@ -// This code is in the public domain -- Ignacio Castaño +// This code is in the public domain -- Ignacio Castaño #ifndef NV_CORE_H #error "Do not include this file directly." @@ -52,6 +52,8 @@ #define NV_THREAD_LOCAL __declspec(thread) +#include + /* // Type definitions typedef unsigned char uint8;