2006-10-02 Nikolas Zimmermann <zimmermann@kde.org>
Reviewed by eseidel. Landed by eseidel.
Fix win32 build, which has no inttypes.h
* wtf/Assertions.h:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16713 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/JavaScriptCore/wtf/Assertions.h b/JavaScriptCore/wtf/Assertions.h
index c2fd2b3..b2205a7 100644
--- a/JavaScriptCore/wtf/Assertions.h
+++ b/JavaScriptCore/wtf/Assertions.h
@@ -38,7 +38,10 @@
*/
#include "Platform.h"
+
+#if !PLATFORM(WIN)
#include <inttypes.h>
+#endif
#ifdef NDEBUG
#define ASSERTIONS_DISABLED_DEFAULT 1