We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5302522 commit bd7b2a0Copy full SHA for bd7b2a0
src/jrd/optimizer/Optimizer.h
@@ -309,6 +309,9 @@ class Optimizer : public Firebird::PermanentStorage
309
iter->flags = 0;
310
}
311
312
+ // Assignment is not currently used in the code and I doubt it should be
313
+ ConjunctIterator& operator=(const ConjunctIterator& other) = delete;
314
+
315
private:
316
Conjunct* const begin;
317
const Conjunct* const end;
@@ -320,7 +323,7 @@ class Optimizer : public Firebird::PermanentStorage
320
323
rewind();
321
324
322
325
- explicit ConjunctIterator(const ConjunctIterator& other)
326
+ ConjunctIterator(const ConjunctIterator& other)
327
: begin(other.begin), end(other.end), iter(other.iter)
328
{}
329
};
0 commit comments