Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
/* See stdc++compat.cpp in mozilla-central for general information. */
#include <stdio.h>
/* operator delete with size is only available in CXXAPI_1.3.9, equivalent to
void operator delete(void* ptr, size_t size) noexcept(true) {
::operator delete(ptr);
}