| Index: command_buffer/service/cross/texture_utils.h
|
| ===================================================================
|
| --- command_buffer/service/cross/texture_utils.h (revision 25949)
|
| +++ command_buffer/service/cross/texture_utils.h (working copy)
|
| @@ -75,8 +75,8 @@
|
| // Round a value up, so that it is divisible by the block size.
|
| static inline unsigned int RoundToBlockSize(unsigned int base,
|
| unsigned int block) {
|
| - DCHECK_GT(base, 0);
|
| - DCHECK_GT(block, 0);
|
| + DCHECK_GT(base, 0U);
|
| + DCHECK_GT(block, 0U);
|
| return block + base - 1 - (base - 1) % block;
|
| }
|
|
|
|
|