We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bb9909 commit c8def13Copy full SHA for c8def13
src/vsg/utils/PolytopeIntersector.cpp
@@ -78,7 +78,6 @@ namespace vsg
78
{
79
size_t numNegativeDistances = 0;
80
size_t numPositiveDistances = 0;
81
- [[maybe_unused]] size_t numZeroDistances = 0;
82
processedDistances.resize(0);
83
for (const auto& v : processedVertices)
84
@@ -88,8 +87,6 @@ namespace vsg
88
87
++numNegativeDistances;
89
else if (d > 0.0)
90
++numPositiveDistances;
91
- else
92
- ++numZeroDistances;
93
}
94
95
if (numNegativeDistances > 0)
0 commit comments