updated comment to use correct c++ syntax.

This commit is contained in:
Joseph Lenox 2018-07-25 23:33:32 -05:00
parent 725f8282b3
commit 60005d1bc6

View File

@ -99,8 +99,9 @@ Print::process()
{ {
/// No need to call this as we call it as part of prepare_infill() /// No need to call this as we call it as part of prepare_infill()
/// until we fix the idempotency issue. /// until we fix the idempotency issue.
///$self->status_cb->(20, "Generating perimeters"); // if (this->status_cb != nullptr)
///$_->make_perimeters for @{$self->objects}; // this->status_cb(20, "Generating perimeters");
// for(auto& obj : this->objects) { obj->make_perimeters(); }
if (this->status_cb != nullptr) if (this->status_cb != nullptr)
this->status_cb(70, "Infilling layers"); this->status_cb(70, "Infilling layers");
for(auto& obj : this->objects) { obj->infill(); } for(auto& obj : this->objects) { obj->infill(); }