C1418: ] expected for array delete operator

[ERROR]

Description

There was no ] found after the [ of a delete operator.

Example
  delete [] MyArray;   // ok

  
  delete [3] MyArray;  // error

  
Tips

Add a ] after the [.