explicitly include compiler.h to be sure all stdint types are defined
authorarighi <arighi@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 28 Dec 2009 11:24:04 +0000 (11:24 +0000)
committerarighi <arighi@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 28 Dec 2009 11:24:04 +0000 (11:24 +0000)
This fix the following build bug:

  In file included from bertos/emul/emulwin.cpp:43:
  bertos/drv/lcd_gfx_qt.h:74: error: ‘uint8_t’ has not been declared
  make: *** [obj/demo/bertos/emul/emulwin.o] Error 1

git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3130 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/drv/lcd_gfx_qt.h

index c74b7883d9ae42543e9b5d728d779e094a6fb0da..f1bb4e9311f5a61422370b8ff704c8fcb7d8d864 100644 (file)
@@ -39,6 +39,9 @@
 #ifndef DRV_LCD_GFX_QT_H
 #define DRV_LCD_GFX_QT_H
 
+// uint8_t
+#include <cfg/compiler.h>
+
 #include <QtGui/QColor>
 #include <QtGui/QFrame>