fix for clang++ compile

This commit is contained in:
Dane Springmeyer 2010-06-18 20:59:16 +00:00
parent e81b1abb8f
commit 5296e302f6

View file

@ -454,12 +454,12 @@ namespace agg
// The scanline container with alpha-masking
//
//------------------------------------------------------------------------
/*
template<class AlphaMask>
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;
};
*/
}