'byte' is no longer being used (as of mapnik/mapnik/#d1616737f20334468e4e149f6abc8a92b8b86542)
This commit is contained in:
parent
b89e721d1b
commit
a113f11bae
1 changed files with 1 additions and 1 deletions
|
@ -771,7 +771,7 @@ void save_as_png8_libimagequant(T1 & file,
|
||||||
{
|
{
|
||||||
mapnik::image_gray8::pixel_type const * row = quantized_image.get_row(y);
|
mapnik::image_gray8::pixel_type const * row = quantized_image.get_row(y);
|
||||||
mapnik::image_gray8::pixel_type * row_out = reduced_image.get_row(y);
|
mapnik::image_gray8::pixel_type * row_out = reduced_image.get_row(y);
|
||||||
byte index = 0;
|
std::uint8_t index = 0;
|
||||||
for (unsigned x = 0; x < width; ++x)
|
for (unsigned x = 0; x < width; ++x)
|
||||||
{
|
{
|
||||||
index = row[x];
|
index = row[x];
|
||||||
|
|
Loading…
Reference in a new issue