deletion of an array expression; conversion to pointer supplied
You cannot use delete on an array, so the compiler converts the array to a pointer.
Example
void func() { int array[ 10 ]; delete array; // warning }