Pretty much as per the title.
The spec for std::vector<T>::resize seems to require that the src object be passed by value:
void resize(size_type n, T src = T() );
Why isn't a reference to a constant object used here instead?
void resize(size_type n, T const& src = T() );
For instance, in this question, the pass-by-value aspect appears to cause stackoverflow issues, due to the creation of a temporary object on the stack.
If a reference to src was passed instead, we'd at least be able to workaround the issue by allocating a temporary on the heap which is passed-by-reference to ::resize().
It also seems that ::resize() is out of step with the other member functions for std::vector. For instance, the constructors take a src object by const& as expected:
vector (size_type n, T const& src = T(), Allocator const& = Allocator() );
EDIT: I dug out the c++03 standard and double checked that the function prototypes above are not mis-quoted...

2003standard, theT const& = T()pattern seems to be in there... – Darren Engwirda Sep 16 '11 at 2:28