Debugger: Add missing include for intptr-types.

This commit is contained in:
Friedemann Kleint
2009-10-28 09:51:19 +01:00
parent ed4bc02110
commit 6d9288118f

View File

@@ -57,6 +57,10 @@
#include <QtCore/QTextStream>
#include <QtCore/QVector>
#ifndef Q_OS_WIN
# include <stdint.h>
#endif
#if (QT_POINTER_SIZE==4) // How to printf/scanf a pointer (uintptr_t)
# define POINTER_PRINTFORMAT "0x%x"
#else