NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Warning (level 1) C4155

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