added some comment about sort.

This commit is contained in:
Robert K 2014-12-02 10:49:42 +01:00
parent c51a794cac
commit a266e98bac

View File

@ -53,6 +53,7 @@ struct QuickSort< 0 >
template <typename T> template <typename T>
static inline void sort(T begin, T end) static inline void sort(T begin, T end)
{ {
// fall back to standard insertion sort
std::sort( begin, end ); std::sort( begin, end );
} }
}; };