1 2 3 4 5 6 7 8 9 10 11
// Copyright (C) Microsoft Corporation. All rights reserved. #include "pch.hpp" #include "memory.h" #include "memory.tmh" // for wil::make_unique_nothrow void* operator new(size_t s, std::nothrow_t const&) { return operator new(s); }