mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
CFG::SuccessorIterator::SuccessorProxy:: Expliictly default copy construction as it is deprecated in C++11 in the presence of explicit copy assignment.
See r231099 for similar issues & details in [Small]BitVector. llvm-svn: 231141
This commit is contained in:
parent
0f7a38b97d
commit
a5b03d823c
@ -136,6 +136,8 @@ private:
|
||||
public:
|
||||
explicit SuccessorProxy(const Self &it) : it(it) {}
|
||||
|
||||
SuccessorProxy(const SuccessorProxy&) = default;
|
||||
|
||||
SuccessorProxy &operator=(SuccessorProxy r) {
|
||||
*this = reference(r);
|
||||
return *this;
|
||||
|
Loading…
x
Reference in New Issue
Block a user