BinnedArray2D use value instead of ptr
std::vector<std::vector<SharedObject<T>>*>* m_array;
to
std::vector<std::vector<SharedObject<T>>> m_array;
Edited by Christos Anastopoulos
std::vector<std::vector<SharedObject<T>>*>* m_array;
to
std::vector<std::vector<SharedObject<T>>> m_array;