| Index: include/gpu/GrTypes.h
|
| diff --git a/include/gpu/GrTypes.h b/include/gpu/GrTypes.h
|
| index 8a8e08c949910c0b60f5932d5bb817e54acdbe10..cf3773c89eeaf79a77c8988cae8bceb7171e0001 100644
|
| --- a/include/gpu/GrTypes.h
|
| +++ b/include/gpu/GrTypes.h
|
| @@ -180,7 +180,7 @@ static const int kMaskFormatCount = kLast_GrMaskFormat + 1;
|
| * Return the number of bytes-per-pixel for the specified mask format.
|
| */
|
| static inline int GrMaskFormatBytesPerPixel(GrMaskFormat format) {
|
| - SkASSERT((unsigned)format < kMaskFormatCount);
|
| + SkASSERT(format < kMaskFormatCount);
|
| // kA8 (0) -> 1
|
| // kA565 (1) -> 2
|
| // kARGB (2) -> 4
|
|
|