DenseMap's move assignment operator needs to return *this

llvm-svn: 157644
This commit is contained in:
Douglas Gregor 2012-05-29 20:33:09 +00:00
parent bfbc51bb8f
commit bbf03d028e

View File

@ -256,6 +256,7 @@ public:
DestroyAll();
init(0);
swap(other);
return *this;
}
#endif