Fix typename warnings

This commit is contained in:
Simon Giraudot 2017-08-11 10:07:11 +02:00
parent 6d277cffcb
commit 50b618d801
2 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ int main (int argc, char* argv[])
ransac.detect(op); // Plane detection
typename Efficient_ransac::Plane_range planes = ransac.planes();
Efficient_ransac::Plane_range planes = ransac.planes();
std::cerr << "done\nPoint set structuring... ";

View File

@ -51,7 +51,7 @@ int main (int argc, char** argv)
ransac.add_shape_factory<Plane>();
ransac.detect();
typename Efficient_ransac::Plane_range planes = ransac.planes();
Efficient_ransac::Plane_range planes = ransac.planes();
Pwn_vector structured_pts;