• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <vector>
2 #include <complex>
3 #include "algorithm"
4 
main()5 int main()
6 {
7     std::vector<std::complex<float> > v;
8     std_::stable_sort(v.begin(), v.end());
9 }
10 
11 // (C) Copyright Jeremy Siek 2000.
12 // Distributed under the Boost Software License, Version 1.0. (See
13 // accompanying file LICENSE_1_0.txt or copy at
14 // http://www.boost.org/LICENSE_1_0.txt)
15