Code goes below:
#include <vector>
int main()
{
vector<int> v1(5,1);
v1.swap(vector<int> ()); //try to swap v1 with a temporary vector object
}
The code above cannot compile, error:
error: no matching function for call to ‘std::vector<int, std::allocator<int> >::swap(std::vector<int, std::allocator<int> >)’
But, if I change the code to something like this, it can compile:
int main()
{
vector<int> v1(5,1);
vector<int> ().swap(v1);
}
Why?