| Index: base/mac/scoped_mach_vm.h
|
| diff --git a/base/mac/scoped_mach_vm.h b/base/mac/scoped_mach_vm.h
|
| index b130a79fb6329b7961bf8252832f92a4b6c12f90..ffc00d5a5d269e039536df1fb61a5ca9b1318e83 100644
|
| --- a/base/mac/scoped_mach_vm.h
|
| +++ b/base/mac/scoped_mach_vm.h
|
| @@ -48,10 +48,9 @@ namespace mac {
|
| class BASE_EXPORT ScopedMachVM {
|
| public:
|
| explicit ScopedMachVM(vm_address_t address = 0, vm_size_t size = 0)
|
| - : address_(address),
|
| - size_(size) {
|
| - DCHECK(address % PAGE_SIZE == 0);
|
| - DCHECK(size % PAGE_SIZE == 0);
|
| + : address_(address), size_(size) {
|
| + DCHECK_EQ(address % PAGE_SIZE, 0u);
|
| + DCHECK_EQ(size % PAGE_SIZE, 0u);
|
| }
|
|
|
| ~ScopedMachVM() {
|
|
|