forked from OSchip/llvm-project
[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:
parent
0f6959f363
commit
ab36965933
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue