mirror of https://github.com/CGAL/cgal
add missing curly brackets
This commit is contained in:
parent
4adbbdcab6
commit
60e6e4b35d
|
|
@ -394,8 +394,10 @@ public:
|
||||||
bool isEmpty() const { return edges.empty(); }
|
bool isEmpty() const { return edges.empty(); }
|
||||||
void compute_bbox() const {
|
void compute_bbox() const {
|
||||||
if(isEmpty())
|
if(isEmpty())
|
||||||
|
{
|
||||||
_bbox = Bbox();
|
_bbox = Bbox();
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
CGAL::Bbox_3 bbox = edges.begin()->bbox();
|
CGAL::Bbox_3 bbox = edges.begin()->bbox();
|
||||||
for(size_t i = 1, end = edges.size(); i < end; ++i) {
|
for(size_t i = 1, end = edges.size(); i < end; ++i) {
|
||||||
bbox = bbox + edges[i].bbox();
|
bbox = bbox + edges[i].bbox();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue