1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

Weird bug appears with Vector<Vector<>>.

"fix" with std::vector<Vector<>>

Lies in the face table code. But think there is some latent problem.
Possibly in my allocator since it is caching, but could simplify or eliminate the caching
option and retest. One to look at later.
This commit is contained in:
Peter Boyle 2018-09-11 04:36:57 +01:00
parent 94d721a20b
commit e4deea4b94

View File

@ -213,7 +213,7 @@ public:
}
int face_table_computed;
Vector<Vector<std::pair<int,int> > > face_table ;
std::vector<Vector<std::pair<int,int> > > face_table ;
Vector<StencilEntry> _entries; // Resident in managed memory