Mod: redundant void 2

This commit is contained in:
berniev
2022-08-07 20:05:16 +10:00
committed by wwmayer
parent 311abcc43e
commit da9ebc572f
805 changed files with 3787 additions and 3787 deletions

View File

@@ -36,7 +36,7 @@
using namespace Path;
// returns a string which represents the object e.g. when printed in python
std::string VoronoiCellPy::representation(void) const
std::string VoronoiCellPy::representation() const
{
std::stringstream ss;
ss.precision(5);
@@ -103,7 +103,7 @@ VoronoiCell* getVoronoiCellFromPy(const VoronoiCellPy *c, PyObject *args = nullp
return self;
}
Py::Long VoronoiCellPy::getIndex(void) const {
Py::Long VoronoiCellPy::getIndex() const {
VoronoiCell *c = getVoronoiCellPtr();
if (c->isBound()) {
return Py::Long(c->dia->index(c->ptr));
@@ -111,7 +111,7 @@ Py::Long VoronoiCellPy::getIndex(void) const {
return Py::Long(-1);
}
Py::Long VoronoiCellPy::getColor(void) const {
Py::Long VoronoiCellPy::getColor() const {
VoronoiCell *c = getVoronoiCellPtr();
if (c->isBound()) {
Voronoi::color_type color = c->ptr->color() & Voronoi::ColorMask;
@@ -124,20 +124,20 @@ void VoronoiCellPy::setColor(Py::Long color) {
getCellFromPy(this)->color(long(color) & Voronoi::ColorMask);
}
Py::Long VoronoiCellPy::getSourceIndex(void) const
Py::Long VoronoiCellPy::getSourceIndex() const
{
VoronoiCell *c = getVoronoiCellFromPy(this);
long index = c->ptr->source_index();
return Py::Long(index);
}
Py::Int VoronoiCellPy::getSourceCategory(void) const
Py::Int VoronoiCellPy::getSourceCategory() const
{
VoronoiCell *c = getVoronoiCellFromPy(this);
return Py::Int(c->ptr->source_category());
}
Py::String VoronoiCellPy::getSourceCategoryName(void) const
Py::String VoronoiCellPy::getSourceCategoryName() const
{
VoronoiCell *c = getVoronoiCellFromPy(this);
switch (c->ptr->source_category()) {
@@ -152,7 +152,7 @@ Py::String VoronoiCellPy::getSourceCategoryName(void) const
return Py::String("");
}
Py::Object VoronoiCellPy::getIncidentEdge(void) const
Py::Object VoronoiCellPy::getIncidentEdge() const
{
VoronoiCell *c = getVoronoiCellFromPy(this);
return Py::asObject(new VoronoiEdgePy(new VoronoiEdge(c->dia, c->ptr->incident_edge())));