summaryrefslogtreecommitdiff
path: root/network/netadaptercx/netvadapterlibrary/code/memory.cpp
blob: 35a3f2c5eb5612defd81a1435fdc78d82eb9ea6b (plain)
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);
}