Try to fix ilist.h after 529e6f8791

This commit is contained in:
Hans Wennborg 2020-02-06 12:33:13 +01:00
parent 1b3d1661bb
commit 4c330be678
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}