]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/concept_check/bad_error_eg.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / concept_check / bad_error_eg.cpp
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)