Skip to content

Commit

Permalink
Commmented out unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
efifogel committed Feb 14, 2024
1 parent edaf59a commit 8fe89f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Envelope_3/include/CGAL/Env_plane_traits_3.h
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class Env_plane_traits_3 : public ArrLinearTraits {
const Line_2& line = cv.supp_line();
const FT& a3 = line.a();
const FT& b3 = line.b();
const FT& c3 = line.c();
// const FT& c3 = line.c(); // unused

// if the line was parallel to the y-axis (i.e x = const),
// then it was enough to compare dz/dx of both planes
Expand Down
2 changes: 1 addition & 1 deletion Envelope_3/include/CGAL/Env_sphere_traits_3.h
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@ class Env_sphere_traits_3 : public ConicTraits_2 {
const Rational& t = cv.t();
const Rational& u = cv.u();
const Rational& v = cv.v();
const Rational& w = cv.w();
// const Rational& w = cv.w(); // unused
Algebraic m = -1 * (2*r*x0 + t*y0 + u);
Algebraic n = 2*s*y0 + t*x0 + v;
// line coefficients: A3, B3, C3
Expand Down

0 comments on commit 8fe89f4

Please sign in to comment.