forked from OSchip/llvm-project
Try to fix MSVC by explicitly providing copy and move constructors so it
doesn't try to use the converting constructor template for those operations. llvm-svn: 269406
This commit is contained in:
parent
031da59423
commit
6ec636d21e
|
@ -36,6 +36,8 @@ public:
|
|||
typedef typename BaseT::reference reference;
|
||||
|
||||
value_sequence_iterator() = default;
|
||||
value_sequence_iterator(const value_sequence_iterator &) = default;
|
||||
value_sequence_iterator(value_sequence_iterator &&) = default;
|
||||
|
||||
template <typename U>
|
||||
value_sequence_iterator(U &&Value) : Value(std::forward<U>(Value)) {}
|
||||
|
|
Loading…
Reference in New Issue