CINT not sorting vectors

I’ve seen http://root.cern.ch/phpBB3/viewtopic.php?f=5&t=6590&start=0&hilit=sort+vector and I see that the sort method fails when sorting a vector. I would like to sort some vectors of ints, so how can I do it? Implement my own Quicksort (http://24bytes.com/Quick-Sort.html) into a function? I’d like to stick with the standard vector over a root class if possible. Thanks.

see TMath::Sort

// Sorting template <typename Element, typename Index> void Sort(Index n, const Element* a, Index* index, Bool_t down=kTRUE);