Fixing GCC warnings 1

This commit is contained in:
Lukas Matena
2021-01-29 10:46:33 +01:00
parent a2a0a86138
commit b5280fbed9
9 changed files with 107 additions and 129 deletions
+2 -2
View File
@@ -59,7 +59,7 @@ public:
~Filler() override {}
protected:
Fill* clone() const override { return new Filler(*this); };
Fill* clone() const override { return new Filler(*this); }
void _fill_surface_single(
const FillParams &params,
unsigned int thickness_layers,
@@ -73,7 +73,7 @@ protected:
bool no_sort() const override { return false; }
};
}; // namespace FillAdaptive
} // namespace FillAdaptive
} // namespace Slic3r
#endif // slic3r_FillAdaptive_hpp_