[llvm-commits] [hlvm] r38154 - /hlvm/trunk/hlvm/Base/Pool.h
Reid Spencer
reid at x10sys.com
Sat Jul 7 17:00:31 PDT 2007
Author: reid
Date: Sat Jul 7 19:00:31 2007
New Revision: 38154
URL: http://llvm.org/viewvc/llvm-project?rev=38154&view=rev
Log:
Deal with systems that don't have stdint.h by including LLVM's header file
llvm/Support/DataTypes.h which has already solved that problem.
Modified:
hlvm/trunk/hlvm/Base/Pool.h
Modified: hlvm/trunk/hlvm/Base/Pool.h
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/hlvm/Base/Pool.h?rev=38154&r1=38153&r2=38154&view=diff
==============================================================================
--- hlvm/trunk/hlvm/Base/Pool.h (original)
+++ hlvm/trunk/hlvm/Base/Pool.h Sat Jul 7 19:00:31 2007
@@ -39,8 +39,8 @@
(::new(pool) type args )
#endif
+#include <llvm/Support/DataTypes.h>
#include <string>
-#include <stdint.h>
namespace hlvm {
More information about the llvm-commits
mailing list