"template" not needed here

This commit is contained in:
Clement Jamin 2015-06-23 08:49:23 +02:00
parent d1e901d9c4
commit a9be1b0a20
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ int main()
ransac.set_input(points);
// Registers detection of planes
ransac.template add_shape_factory<Plane>();
ransac.add_shape_factory<Plane>();
// Measures time before setting up the shape detection.
CGAL::Timer time;