@@ -104,7 +104,7 @@ class FilterBoxIntersection {
104104 max_include_bits = PRE (maxExclude);
105105 }
106106
107- [[nodiscard]] bool IsEntryValid (const PhPoint<DIM>& key, const int & value ) const {
107+ [[nodiscard]] bool IsEntryValid (const PhPoint<DIM>& key, const int &) const {
108108 for (int i = 0 ; i < DIM; ++i) {
109109 if (key[i] < min_include_bits[i] || key[i] > max_include_bits[i]) {
110110 return false ;
@@ -146,11 +146,11 @@ class FilterTrue {
146146 maxIncludeBits = PRE (maxExclude);
147147 }
148148
149- [[nodiscard]] bool IsEntryValid (const PhPoint<DIM>& key , const int & value ) const {
149+ [[nodiscard]] bool IsEntryValid (const PhPoint<DIM>&, const int &) const {
150150 return true ;
151151 }
152152
153- [[nodiscard]] bool IsNodeValid (const PhPoint<DIM>& prefix , int bits_to_ignore ) const {
153+ [[nodiscard]] bool IsNodeValid (const PhPoint<DIM>&, int ) const {
154154 return true ;
155155 }
156156
@@ -164,11 +164,11 @@ class FilterTrue2 {
164164 public:
165165 FilterTrue2 () : minIncludeBits{}, maxIncludeBits{} {};
166166
167- [[nodiscard]] bool IsEntryValid (const PhPoint<DIM>& key , const int & value ) const {
167+ [[nodiscard]] bool IsEntryValid (const PhPoint<DIM>&, const int &) const {
168168 return true ;
169169 }
170170
171- [[nodiscard]] bool IsNodeValid (const PhPoint<DIM>& prefix , int bits_to_ignore ) const {
171+ [[nodiscard]] bool IsNodeValid (const PhPoint<DIM>&, int ) const {
172172 return true ;
173173 }
174174
@@ -179,11 +179,11 @@ class FilterTrue2 {
179179
180180template <dimension_t DIM, typename T>
181181struct FilterTrue3 {
182- [[nodiscard]] constexpr bool IsEntryValid (const PhPoint<DIM>& key , const T& value ) const {
182+ [[nodiscard]] constexpr bool IsEntryValid (const PhPoint<DIM>&, const T&) const {
183183 return true ;
184184 }
185185
186- [[nodiscard]] constexpr bool IsNodeValid (const PhPoint<DIM>& prefix , int bits_to_ignore ) const {
186+ [[nodiscard]] constexpr bool IsNodeValid (const PhPoint<DIM>&, int ) const {
187187 return true ;
188188 }
189189};
0 commit comments