From 5296e302f6162fdb4b752cd4307b07dce072f6e3 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 18 Jun 2010 20:59:16 +0000 Subject: [PATCH] fix for clang++ compile --- agg/include/agg_scanline_u.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/agg/include/agg_scanline_u.h b/agg/include/agg_scanline_u.h index f2e334853..2a84d465c 100644 --- a/agg/include/agg_scanline_u.h +++ b/agg/include/agg_scanline_u.h @@ -454,12 +454,12 @@ namespace agg // The scanline container with alpha-masking // //------------------------------------------------------------------------ - /* + template 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; @@ -491,7 +491,7 @@ namespace agg private: const AlphaMask* m_alpha_mask; }; - */ + }