[llvm-commits] [llvm] r109026 - /llvm/trunk/include/llvm/Support/MachO.h

Daniel Dunbar daniel at zuster.org
Wed Jul 21 11:48:59 PDT 2010


Author: ddunbar
Date: Wed Jul 21 13:48:59 2010
New Revision: 109026

URL: http://llvm.org/viewvc/llvm-project?rev=109026&view=rev
Log:
Use System/DataTypes.h instead of stdint.h, which isn't portable.

Modified:
    llvm/trunk/include/llvm/Support/MachO.h

Modified: llvm/trunk/include/llvm/Support/MachO.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/MachO.h?rev=109026&r1=109025&r2=109026&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/MachO.h (original)
+++ llvm/trunk/include/llvm/Support/MachO.h Wed Jul 21 13:48:59 2010
@@ -14,7 +14,7 @@
 #ifndef LLVM_SUPPORT_MACHO_H
 #define LLVM_SUPPORT_MACHO_H
 
-#include <stdint.h>
+#include "llvm/System/DataTypes.h"
 
 // NOTE: The enums in this file are intentially named to be different than those
 // in the headers in /usr/include/mach (on darwin systems) to avoid conflicts





More information about the llvm-commits mailing list