| Index: base/allocator/allocator_shim_default_dispatch_to_winheap.cc
|
| diff --git a/base/allocator/allocator_shim_default_dispatch_to_winheap.cc b/base/allocator/allocator_shim_default_dispatch_to_winheap.cc
|
| index 2df3fdf5fef99cf63bcbe6317e6651dd5bda0ac8..af635cde832647cf2b831ef7dd9ecdbbb387961d 100644
|
| --- a/base/allocator/allocator_shim_default_dispatch_to_winheap.cc
|
| +++ b/base/allocator/allocator_shim_default_dispatch_to_winheap.cc
|
| @@ -33,7 +33,8 @@ void* DefaultWinHeapCallocImpl(const AllocatorDispatch* self,
|
| void* DefaultWinHeapMemalignImpl(const AllocatorDispatch* self,
|
| size_t alignment,
|
| size_t size) {
|
| - CHECK(false) << "The windows heap does not support memalign.";
|
| + // The windows heap does not support memalign.
|
| + CHECK(false);
|
| return nullptr;
|
| }
|
|
|
|
|