From e110080fb57aafb02501f7652e5ec20989a72acb Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Fri, 11 Sep 2015 21:51:06 +0200 Subject: [PATCH] [MSVC] Fix a 'no target architecture' fatal error Funny fact: the windows system headers are not self-contained. http://stackoverflow.com/questions/4845198/fatal-error-no-target-architecture-in-visual-studio --- include/xbt/xbt_os_thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/xbt/xbt_os_thread.h b/include/xbt/xbt_os_thread.h index 72ae27983d..3c336cba81 100644 --- a/include/xbt/xbt_os_thread.h +++ b/include/xbt/xbt_os_thread.h @@ -27,7 +27,7 @@ typedef struct xbt_os_thread_ *xbt_os_thread_t; #ifdef _XBT_WIN32 /* defined if this is a windows system, 32bits or 64bits) */ -#include +#include typedef DWORD xbt_os_thread_key_t; #else /* assume that every non-windows system is POSIX-compatible */ -- 2.20.1