[libcxx-commits] [PATCH] D84943: [libc++] Remove workarounds for missing rvalue references
Marshall Clow via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jul 30 06:52:43 PDT 2020
mclow.lists added inline comments.
================
Comment at: libcxx/include/__hash_table:2565
__h->__next_ = nullptr;
- return _LIBCPP_EXPLICIT_MOVE(__h); // explicitly moved for C++03
+ return (__h); // explicitly moved for C++03
}
----------------
The comment here (and in other places) is now incorrect.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D84943/new/
https://reviews.llvm.org/D84943
More information about the libcxx-commits
mailing list