From 58916d4a365d68ddfebaa75d08d083a67350e880 Mon Sep 17 00:00:00 2001 From: Murai Takashi Date: Thu, 1 Sep 2016 06:27:25 +0900 Subject: [PATCH] agg_scanline_u.h: fix wrong base_type As pointed out at https://sourceforge.net/p/agg/svn/37 Signed-off-by: Augustin Cavalier --- headers/libs/agg/agg_scanline_u.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/libs/agg/agg_scanline_u.h b/headers/libs/agg/agg_scanline_u.h index b87e81c82f..7a78de1a46 100644 --- a/headers/libs/agg/agg_scanline_u.h +++ b/headers/libs/agg/agg_scanline_u.h @@ -458,7 +458,7 @@ namespace agg class scanline32_u8_am : public scanline32_u8 { public: - typedef scanline_u8 base_type; + typedef scanline32_u8 base_type; typedef AlphaMask alpha_mask_type; typedef base_type::cover_type cover_type; typedef base_type::coord_type coord_type;