Fix syntax error.

This commit is contained in:
Stéphane Tayeb 2009-11-16 12:48:11 +00:00
parent 58910703cb
commit 3f1a416bc0
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ template <class K>
bool do_intersect(const CGAL::Bbox_3& bbox,
const CGAL::Ray_3<K>& ray)
{
return typename K::Do_intersect_3(ray, bbox);
return typename K::Do_intersect_3()(ray, bbox);
}
CGAL_END_NAMESPACE