From: Martin Quinson Date: Fri, 11 Sep 2015 19:51:06 +0000 (+0200) Subject: [MSVC] Fix a 'no target architecture' fatal error X-Git-Tag: v3_12~249 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/e110080fb57aafb02501f7652e5ec20989a72acb [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 --- 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 */