https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108391

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
No, but:
#include <new>

int main() {
  void* p = ::operator new[](2);
#if __cpp_sized_deallocation >= 201309
  ::operator delete[](p, 2);
#else
  ::operator delete[](p);
#endif
}
or so.

Reply via email to