[libc++][NFC] Consistently qualify malloc and free calls with std::

This commit is contained in:
Louis Dionne 2023-06-14 14:05:00 -07:00
parent d53cf0fdd1
commit 5e73fda53c
2 changed files with 5 additions and 5 deletions

View File

@ -7,8 +7,8 @@
//===----------------------------------------------------------------------===//
#include <__memory/aligned_alloc.h>
#include <cstdlib>
#include <new>
#include <stdlib.h>
namespace std
{
@ -52,7 +52,7 @@ operator new(std::size_t size) _THROW_BAD_ALLOC
if (size == 0)
size = 1;
void* p;
while ((p = ::malloc(size)) == nullptr)
while ((p = std::malloc(size)) == nullptr)
{
// If malloc fails and there is a new_handler,
// call it to try free up memory.
@ -118,7 +118,7 @@ _LIBCPP_WEAK
void
operator delete(void* ptr) noexcept
{
::free(ptr);
std::free(ptr);
}
_LIBCPP_WEAK

View File

@ -37,7 +37,7 @@ operator new(std::size_t size) _THROW_BAD_ALLOC
if (size == 0)
size = 1;
void* p;
while ((p = ::malloc(size)) == nullptr)
while ((p = std::malloc(size)) == nullptr)
{
// If malloc fails and there is a new_handler,
// call it to try free up memory.
@ -103,7 +103,7 @@ _LIBCPP_WEAK
void
operator delete(void* ptr) noexcept
{
::free(ptr);
std::free(ptr);
}
_LIBCPP_WEAK