Commit f99b51c5 authored by Rémi Duraffort's avatar Rémi Duraffort

Use delete[] to delete an array.

parent 0034fbab
......@@ -315,8 +315,8 @@ RuntimeNPClass<T>::RuntimeNPClass()
template<class T>
RuntimeNPClass<T>::~RuntimeNPClass()
{
delete propertyIdentifiers;
delete methodIdentifiers;
delete[] propertyIdentifiers;
delete[] methodIdentifiers;
}
template<class T>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment