forked from OSchip/llvm-project
Try to fix ilist.h after 529e6f8791
This commit is contained in:
parent
1b3d1661bb
commit
4c330be678
|
@ -203,7 +203,7 @@ public:
|
|||
iplist_impl &operator=(iplist_impl &&X) {
|
||||
*static_cast<TraitsT *>(this) = std::move(static_cast<TraitsT &>(X));
|
||||
*static_cast<IntrusiveListT *>(this) =
|
||||
std::move(static_cast<IntrusiveListT &>);
|
||||
std::move(static_cast<IntrusiveListT &>(X));
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue