Commit 9dc73a423642b997035c18834ebe43b32d12e8cb

Authored by Jiaming Guo
1 parent bd574305

make it compatible for linux system

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
stim/structures/kdtree.cuh
... ... @@ -507,7 +507,7 @@ namespace stim {
507 507 //bb.init(&h_reference_points[0]);
508 508 //aaboundingboxing<T, D>(bb, h_reference_points, reference_count);
509 509  
510   - std::vector <kdtree::point<T, D>> reference_points(reference_count); // restore the reference points in particular way
  510 + std::vector < typename kdtree::point<T, D>> reference_points(reference_count); // restore the reference points in particular way
511 511 for (size_t j = 0; j < reference_count; j++)
512 512 for (size_t i = 0; i < D; i++)
513 513 reference_points[j].dim[i] = h_reference_points[j * D + i];
... ...