[llvm-exegesis] Remove unnecessary deletion of an assignment operator of WrappingIterator that angers some versions of MSVC

The deletion of the const WrappingIterator & should already cover this.
This commit is contained in:
Craig Topper 2020-02-27 14:15:03 -08:00
parent 0f6959f363
commit ab36965933
1 changed files with 0 additions and 1 deletions

View File

@ -150,7 +150,6 @@ class CombinationGenerator {
WrappingIterator() = delete;
WrappingIterator(const WrappingIterator &) = delete;
WrappingIterator(WrappingIterator &&) = delete;
WrappingIterator &operator=(WrappingIterator) = delete;
WrappingIterator &operator=(const WrappingIterator &) = delete;
WrappingIterator &operator=(WrappingIterator &&) = delete;
};