E2043 Declare operator delete (void*) or (void*, size_t) (C++)

From RAD Studio
Jump to: navigation, search

Go Up to Compiler Errors And Warnings (C++) Index

Declare the operator delete with one of the following:

  • A single void* parameter
  • A second parameter of type size_t

The second version is used in preference to the first version.

The global operator delete can only be declared using the single-parameter form.