1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-03 18:55:56 +01:00

Remove vector view. The std::vector will not inform Memory manager of

deletion and so a stale entry could be left. It is not and should not be
used.
This commit is contained in:
Peter Boyle 2025-02-12 14:48:46 +00:00
parent 0baaddbe98
commit 4de5ed1613

View File

@ -179,6 +179,7 @@ template<class T> using Vector = std::vector<T,uvmAllocator<T> >;
template<class T> using uvmVector = std::vector<T,uvmAllocator<T> >; // auto migrating page
template<class T> using deviceVector = std::vector<T,devAllocator<T> >; // device vector
/*
template<class T> class vecView
{
protected:
@ -214,6 +215,7 @@ template<class T> vecView<T> VectorView(Vector<T> &vec,ViewMode _mode)
#define autoVecView(v_v,v,mode) \
auto v_v = VectorView(v,mode); \
ViewCloser<decltype(v_v)> _autoView##v_v(v_v);
*/
NAMESPACE_END(Grid);