deletion of an array expression without using the array form of 'delete'
The non-array form of delete cannot delete an array. This warning occurs only under ANSI-compatibility (/Za).
Example
T (*array)[ 10 ] = new T[ 5 ][ 10 ]; delete array; // warning