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.
2 parents 266b9ef + df2d3d8 commit 434fb9fCopy full SHA for 434fb9f
nanovdb/nanovdb/util/GridStats.h
@@ -74,7 +74,6 @@ class Extrema<ValueT, 0>
74
, mMax(b)
75
{
76
}
77
- Extrema& operator=(const Extrema&) = default;
78
Extrema& min(const ValueT& v)
79
80
if (v < mMin) {
@@ -132,7 +131,6 @@ class Extrema<VecT, 1>
132
131
, vector(v)
133
134
135
- Pair& operator=(const Pair&) = default;
136
bool operator<(const Pair& rhs) const { return scalar < rhs.scalar; }
137
} mMin, mMax;
138
Extrema& add(const Pair& p)
@@ -163,7 +161,6 @@ class Extrema<VecT, 1>
163
161
164
162
165
166
167
Extrema& min(const VecT& v)
168
169
Pair tmp(v);
0 commit comments