From 09c894484fefb2448d9049f87021f2e3bf6c9229 Mon Sep 17 00:00:00 2001 From: arighi Date: Mon, 28 Dec 2009 11:24:04 +0000 Subject: [PATCH] explicitly include compiler.h to be sure all stdint types are defined MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bertos/drv/lcd_gfx_qt.h b/bertos/drv/lcd_gfx_qt.h index c74b7883..f1bb4e93 100644 --- a/bertos/drv/lcd_gfx_qt.h +++ b/bertos/drv/lcd_gfx_qt.h @@ -39,6 +39,9 @@ #ifndef DRV_LCD_GFX_QT_H #define DRV_LCD_GFX_QT_H +// uint8_t +#include + #include #include -- 2.25.1