[Lldb-commits] [lldb] r207100 - Windows Fix: added inttypes.h. Introduces macro redefinition warnings due to LLVM itself externally defining the PRI macros, but now builds on vs2013.

Colin Riley colin at codeplay.com
Thu Apr 24 04:59:56 PDT 2014


Author: domipheus
Date: Thu Apr 24 06:59:56 2014
New Revision: 207100

URL: http://llvm.org/viewvc/llvm-project?rev=207100&view=rev
Log:
Windows Fix: added inttypes.h. Introduces macro redefinition warnings due to LLVM itself externally defining the PRI macros, but now builds on vs2013.

Modified:
    lldb/trunk/include/lldb/Host/windows/win32.h

Modified: lldb/trunk/include/lldb/Host/windows/win32.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Host/windows/win32.h?rev=207100&r1=207099&r2=207100&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Host/windows/win32.h (original)
+++ lldb/trunk/include/lldb/Host/windows/win32.h Thu Apr 24 06:59:56 2014
@@ -45,6 +45,7 @@ char* realpath(const char * name, char *
 
 #ifdef _MSC_VER
 
+#include <inttypes.h>
 #include <stdint.h>
 #include <io.h>
 typedef unsigned short mode_t;





More information about the lldb-commits mailing list