You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
~MaybeStaticArray() (hierarchical_softmax.cc:316) Mismatched free() / delete / delete [] is detected by Valgrind. delete dynamic_array;
should be replaced by delete [] dynamic_array;
since you defined new T[dynamic_size] in the constructor.
This may cause undefined behavior.
The text was updated successfully, but these errors were encountered:
~MaybeStaticArray() (hierarchical_softmax.cc:316)
Mismatched free() / delete / delete [] is detected by Valgrind.
delete dynamic_array;
should be replaced by
delete [] dynamic_array;
since you defined
new T[dynamic_size]
in the constructor.This may cause undefined behavior.
The text was updated successfully, but these errors were encountered: