From 4de5ed16135220f8ac313b03b31d6e7ffde0dda4 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Wed, 12 Feb 2025 14:48:46 +0000 Subject: [PATCH] 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. --- Grid/allocator/AlignedAllocator.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Grid/allocator/AlignedAllocator.h b/Grid/allocator/AlignedAllocator.h index 8946a364..ec880c91 100644 --- a/Grid/allocator/AlignedAllocator.h +++ b/Grid/allocator/AlignedAllocator.h @@ -179,6 +179,7 @@ template using Vector = std::vector >; template using uvmVector = std::vector >; // auto migrating page template using deviceVector = std::vector >; // device vector +/* template class vecView { protected: @@ -214,6 +215,7 @@ template vecView VectorView(Vector &vec,ViewMode _mode) #define autoVecView(v_v,v,mode) \ auto v_v = VectorView(v,mode); \ ViewCloser _autoView##v_v(v_v); +*/ NAMESPACE_END(Grid);