mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 05:46:06 +00:00

move constructor/move assignment operator are not declared, rather than being defined as deleted, so move operations on the derived class fall back to copying rather than moving. If a move operation on the derived class is explicitly defaulted, the unmovable subobject will be copied instead of being moved. llvm-svn: 153883