"If I'm not mistaken, it will work with all standard containers"
The whole question boils down to, in what implementation? Do you want to code to the standard, or do you want to code to implementation details of the compiler you have in front of you today? If the latter, then if all your tests pass I guess it works.
If you're asking about the C++ programming language, then qsort is required to work only for POD types. If you're asking about a specific implementation, which one? If you're asking about all implementations, then you've sort of missed your chance, since the best place for that kind of straw poll was C++0x working group meetings, since they gathered together representatives of pretty much every organization with an actively-maintained C++ implementation.
For what it's worth, I can pretty easily imagine an implementation of std::list in which a list node is embedded in the list object itself, and used as a head/tail sentinel. I don't know what implementations (if any) actually do that, since it's also common to use a null pointer as a head/tail sentinel, but certainly there are some advantages to implementing a doubly-linked list with a dummy node at each end. An instance of such a std::list would of course not be trivially movable, since the nodes for its first and last elements would no longer point to the sentinel. Its swap implementation and (in C++0x) its move constructor would account for this by updating those first and last nodes.
There is nothing to stop your compiler switching to this implementation of std::list in its next release, although that would break binary compatibility so given how most compilers are managed it would have to be a major release.
Similarly, the map/set/multimap/multiset quartet could have nodes that point to their parents. Debugging iterators for any container might conceivably contain a pointer to the container. To do what you want, you'd have to (at least) rule out the existence of any pointer into the container in any part of its implementation, and a sweeping statement like "no implementation uses any of these tricks" is pretty unwise. The whole point of having a standard is to make statements about all conforming implementations, so if you haven't deduced your conclusion from the standard, then even if your statement is true today it could become untrue tomorrow.
move-semanticsa little bit confusing here, as it is usually associated with C++0x's move semantics. – Björn Pollex May 30 '11 at 10:17qsortfor any non POD type in C++. From there on, the specific cases for which it will break and how is not that important: you should not use it anyway. – David Rodríguez - dribeas May 30 '11 at 10:18qsortin the first place? On all platforms I've checked,std::sortwas faster (for trivially-swappable object types), and that is completely plausible, given the option of inlining the comparison operator. – Christopher Creutzig May 30 '11 at 11:42std::sortwas about twice as fast because it sorted in place (no memory allocation). With C++0x we even get move constructor for free for most types, and thus swap becomes as good as bit-copying... when it's safe. So why would you bother, at all, withqsort? – Matthieu M. May 30 '11 at 12:00