blob: 5f8d892d519aeaa35d542ee0d4bc4db0e0553631 [file] [log] [blame]
Brian Silvermanbca6d252018-08-04 23:36:16 -07001#include <vector>
2#include <complex>
3#include "algorithm"
4
5int 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)