Skip to content

Commit

Permalink
Do not return const values
Browse files Browse the repository at this point in the history
  • Loading branch information
MaelRL committed Jan 8, 2025
1 parent 981e68c commit 30064c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class Circular_arc_point_3

const Root_for_spheres_2_3 & coordinates() const { return get_pointee_or_identity(base); }

const CGAL::Bbox_3 bbox() const {
CGAL::Bbox_3 bbox() const {
return get_pointee_or_identity(base).bbox();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ namespace CGAL {
return begin_less_xyz_than_end() ? target() : source();
}

const CGAL::Bbox_3 bbox() const {
CGAL::Bbox_3 bbox() const {
return source().bbox() + target().bbox();
}

Expand Down

0 comments on commit 30064c1

Please sign in to comment.