Index: mojo/edk/system/memory.cc |
diff --git a/mojo/edk/system/memory.cc b/mojo/edk/system/memory.cc |
index 0e3d9a9cb70a55cacc81ba7315dc6929e958e89f..1d7f792a82be574bbc465abe30d04aac7848e7c8 100644 |
--- a/mojo/edk/system/memory.cc |
+++ b/mojo/edk/system/memory.cc |
@@ -40,20 +40,20 @@ |
template <size_t size, size_t alignment> |
void MOJO_SYSTEM_IMPL_EXPORT |
-CheckUserPointerWithCount(const void* pointer, size_t count) { |
+ CheckUserPointerWithCount(const void* pointer, size_t count) { |
CHECK_LE(count, std::numeric_limits<size_t>::max() / size); |
CHECK(count == 0 || (pointer && IsAligned<alignment>(pointer))); |
} |
// Explicitly instantiate the sizes we need. Add instantiations as needed. |
template void MOJO_SYSTEM_IMPL_EXPORT |
-CheckUserPointerWithCount<1, 1>(const void*, size_t); |
+ CheckUserPointerWithCount<1, 1>(const void*, size_t); |
template void MOJO_SYSTEM_IMPL_EXPORT |
-CheckUserPointerWithCount<4, 4>(const void*, size_t); |
+ CheckUserPointerWithCount<4, 4>(const void*, size_t); |
template void MOJO_SYSTEM_IMPL_EXPORT |
-CheckUserPointerWithCount<8, 4>(const void*, size_t); |
+ CheckUserPointerWithCount<8, 4>(const void*, size_t); |
template void MOJO_SYSTEM_IMPL_EXPORT |
-CheckUserPointerWithCount<8, 8>(const void*, size_t); |
+ CheckUserPointerWithCount<8, 8>(const void*, size_t); |
template <size_t alignment> |
void CheckUserPointerWithSize(const void* pointer, size_t size) { |
@@ -65,9 +65,9 @@ |
// Explicitly instantiate the sizes we need. Add instantiations as needed. |
template void MOJO_SYSTEM_IMPL_EXPORT |
-CheckUserPointerWithSize<1>(const void*, size_t); |
+ CheckUserPointerWithSize<1>(const void*, size_t); |
template void MOJO_SYSTEM_IMPL_EXPORT |
-CheckUserPointerWithSize<4>(const void*, size_t); |
+ CheckUserPointerWithSize<4>(const void*, size_t); |
// Whereas the other |Check...()| functions are usually used with integral typs |
// or arrays of integral types, this one is used with Options structs for which |
// alignment has been explicitly been specified (using |MOJO_ALIGNAS()|), which |
@@ -75,13 +75,13 @@ |
#if defined(COMPILER_MSVC) && defined(ARCH_CPU_32_BITS) |
template <> |
void MOJO_SYSTEM_IMPL_EXPORT |
-CheckUserPointerWithSize<8>(const void* pointer, size_t size) { |
+ CheckUserPointerWithSize<8>(const void* pointer, size_t size) { |
CHECK(size == 0 || |
(!!pointer && reinterpret_cast<uintptr_t>(pointer) % 8 == 0)); |
} |
#else |
template void MOJO_SYSTEM_IMPL_EXPORT |
-CheckUserPointerWithSize<8>(const void*, size_t); |
+ CheckUserPointerWithSize<8>(const void*, size_t); |
#endif |
} // namespace internal |