Bug 1279657 - Reference declarations should have the & against the type. - r=jrmuizel

MozReview-Commit-ID: 7RAd0TUJHfB
This commit is contained in:
Jeff Gilbert 2016-06-10 18:05:40 -07:00
parent 35663fcd17
commit 3d08cc27b5

View File

@ -52,7 +52,7 @@ NextPowerOfTwo(int aNumber)
}
static unsigned int
DataOffset(const IntPoint &aPoint, int32_t aStride, SurfaceFormat aFormat)
DataOffset(const IntPoint& aPoint, int32_t aStride, SurfaceFormat aFormat)
{
unsigned int data = aPoint.y * aStride;
data += aPoint.x * BytesPerPixel(aFormat);