Brian Silverman | bca6d25 | 2018-08-04 23:36:16 -0700 | [diff] [blame^] | 1 | #include <vector> |
2 | #include <complex> | ||||
3 | #include "algorithm" | ||||
4 | |||||
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) |