[llvm-commits] [llvm] r101062 - /llvm/trunk/include/llvm-c/EnhancedDisassembly.h

Sean Callanan scallanan at apple.com
Mon Apr 12 13:21:56 PDT 2010


Author: spyffe
Date: Mon Apr 12 15:21:56 2010
New Revision: 101062

URL: http://llvm.org/viewvc/llvm-project?rev=101062&view=rev
Log:
Bug fix: included System/Types.h instead of
inttypes.h to allow building on Windows.

Modified:
    llvm/trunk/include/llvm-c/EnhancedDisassembly.h

Modified: llvm/trunk/include/llvm-c/EnhancedDisassembly.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm-c/EnhancedDisassembly.h?rev=101062&r1=101061&r2=101062&view=diff
==============================================================================
--- llvm/trunk/include/llvm-c/EnhancedDisassembly.h (original)
+++ llvm/trunk/include/llvm-c/EnhancedDisassembly.h Mon Apr 12 15:21:56 2010
@@ -19,7 +19,7 @@
 #ifndef LLVM_C_ENHANCEDDISASSEMBLY_H
 #define LLVM_C_ENHANCEDDISASSEMBLY_H
 
-#include <inttypes.h>
+#include "llvm/System/DataTypes.h"
 
 #ifdef __cplusplus
 extern "C" {





More information about the llvm-commits mailing list