Trailing 'l' on return statement

In CERES_SOLVER mode only
This commit is contained in:
Charles Gueunet 2023-05-22 10:54:42 +02:00
parent 11b92e94f8
commit cf07ee9c91
1 changed files with 1 additions and 1 deletions

View File

@ -468,7 +468,7 @@ public:
// std::cout << "y : " << initial_y << " -> " << y << "\n";
// std::cout << "z : " << initial_z << " -> " << z << "\n";
return Vector(FT(x - initial_x), FT(y - initial_y), FT(z - initial_z))l;
return Vector(FT(x - initial_x), FT(y - initial_y), FT(z - initial_z));
#else
CGAL_USE(v);
return CGAL::NULL_VECTOR;