Affected subclause: [basic.stc.dynamic.deallocation]
Change: New usual (non-placement) deallocator
. Rationale: Required for sized deallocation
. Effect on original feature: Valid C++ 2011 code could declare a global placement allocation function and
deallocation function as follows:
void* operator new(std::size_t, std::size_t);
void operator delete(void*, std::size_t) noexcept;