Use delete[] to satisfy compiler warning

(cherry picked from commit 1b119f6add)
This commit is contained in:
Robin Dunn
2018-08-30 10:39:39 -07:00
parent 10c34f20e7
commit 5d984d99e1

View File

@@ -98,7 +98,7 @@ def run():
}
wxAcceleratorTable* table = new wxAcceleratorTable(count, tmpEntries);
delete tmpEntries;
delete [] tmpEntries;
return table;
""")