mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-07 09:56:59 +00:00
Fix clang compilation error in rotate.cpp
This commit is contained in:
parent
b9e7e1b373
commit
7a6c9c3dde
@ -44,7 +44,7 @@ static void image_scale_tpl(Image* dst, const Image* src, int x, int y, int w, i
|
||||
if (!clip.clip(dst->width(), dst->height(), src->width(), src->height()))
|
||||
return;
|
||||
|
||||
typename LockImageBits<ImageTraits> dst_bits(dst, clip.dstBounds());
|
||||
LockImageBits<ImageTraits> dst_bits(dst, clip.dstBounds());
|
||||
typename LockImageBits<ImageTraits>::iterator dst_it = dst_bits.begin();
|
||||
|
||||
for (int v=0; v<clip.size.h; ++v) {
|
||||
|
Loading…
Reference in New Issue
Block a user