Mod: Use override etc 2

This commit is contained in:
berniev
2022-08-09 11:53:46 +10:00
committed by wwmayer
parent 75fa455c5d
commit 71dc5ead2f
697 changed files with 4956 additions and 4956 deletions

View File

@@ -93,7 +93,7 @@ public:
std::map<Part::Feature*, std::vector<App::Color> > partColors;
private:
virtual void applyFaceColors(Part::Feature* part, const std::vector<App::Color>& colors) override {
void applyFaceColors(Part::Feature* part, const std::vector<App::Color>& colors) override {
partColors[part] = colors;
}
};
@@ -127,7 +127,7 @@ public:
initialize("This module is the Import module."); // register with Python
}
virtual ~Module() {}
~Module() override {}
private:
Py::Object importer(const Py::Tuple& args, const Py::Dict &kwds)